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
This commit is contained in:
Vadim Zeitlin
2011-02-26 17:46:51 +00:00
parent 8591c94695
commit 42a2d74bd0

View File

@@ -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;