]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/spinctrl.cpp
Enable variadic macros for VC9 and later.
[wxWidgets.git] / src / msw / spinctrl.cpp
index d5b95d411596e5138d99de3224a335eec40780ea..0017413e0ac8fbb09c3b14dbe0491633b73c4844 100644 (file)
@@ -298,6 +298,10 @@ bool wxSpinCtrl::Create(wxWindow *parent,
     WXDWORD exStyle = 0;
     WXDWORD msStyle = MSWGetStyle(GetWindowStyle(), & exStyle) ;
 
+    // Scroll text automatically if there is not enough space to show all of
+    // it, this is better than not allowing to enter more digits at all.
+    msStyle |= ES_AUTOHSCROLL;
+
     // propagate text alignment style to text ctrl
     if ( style & wxALIGN_RIGHT )
         msStyle |= ES_RIGHT;