From: Vadim Zeitlin Date: Sat, 26 Feb 2011 17:46:51 +0000 (+0000) Subject: Don't use wxTE_NOHIDESEL in wxSpinCtrlGeneric. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/42a2d74bd0dfa853a5ff926fb46b3e10f22eee50 Don't use wxTE_NOHIDESEL in wxSpinCtrlGeneric. There is no reason to use this flag for the spin control and doing it makes it gratuitously different from the native one under wxMSW. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67030 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/spinctlg.cpp b/src/generic/spinctlg.cpp index dcb3ada436..2628efefa6 100644 --- a/src/generic/spinctlg.cpp +++ b/src/generic/spinctlg.cpp @@ -64,7 +64,7 @@ class wxSpinCtrlTextGeneric : public wxTextCtrl public: wxSpinCtrlTextGeneric(wxSpinCtrlGenericBase *spin, const wxString& value, long style=0) : wxTextCtrl(spin->GetParent(), wxID_ANY, value, wxDefaultPosition, wxDefaultSize, - ( style & wxALIGN_MASK ) | wxTE_NOHIDESEL | wxTE_PROCESS_ENTER) + ( style & wxALIGN_MASK ) | wxTE_PROCESS_ENTER) { m_spin = spin;