From 7170eca0f78ff80086787e997e503b1082d26045 Mon Sep 17 00:00:00 2001 From: Artur Wieczorek Date: Tue, 18 Nov 2014 22:34:30 +0000 Subject: [PATCH] Allow using the letter 'E' (capital) as a symbol of exponent when entering floating point numbers. Currently, only the letter 'e' is accepted when editing wxPG numeric properties. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78156 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/propgrid/props.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/propgrid/props.cpp b/src/propgrid/props.cpp index 00871cfeee..e006f14a2c 100644 --- a/src/propgrid/props.cpp +++ b/src/propgrid/props.cpp @@ -187,7 +187,7 @@ wxNumericPropertyValidator:: { arr.Add(wxS("+")); arr.Add(wxS("-")); - arr.Add(wxS("e")); + arr.Add(wxS("e")); arr.Add(wxS("E")); // Use locale-specific decimal point arr.Add(wxString::Format("%g", 1.1)[1]);