]> git.saurik.com Git - wxWidgets.git/commitdiff
Use wxSP_WRAP for generic wxTimePicker spin button.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 2 Oct 2011 12:58:48 +0000 (12:58 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 2 Oct 2011 12:58:48 +0000 (12:58 +0000)
This ensures that the spin button arrows are always enabled, as they should
be, even under wxGTK where wxSpinButton disables its arrows on its own if its
value reaches the end of its range and wxSP_WRAP is not used.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69289 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/timectrl.cpp

index 38218a6a62b99241031eb00ad2a6d340898e1db5..af10b288f1bd25c161919b626d7cdc96ba97fbba 100644 (file)
@@ -72,7 +72,9 @@ public:
         // this is not currently supported by wxTextCtrl.
         m_text->SetCursor(wxCURSOR_ARROW);
 
-        m_btn = new wxSpinButton(ctrl);
+        m_btn = new wxSpinButton(ctrl, wxID_ANY,
+                                 wxDefaultPosition, wxDefaultSize,
+                                 wxSP_VERTICAL | wxSP_WRAP);
 
         m_currentField = Field_Hour;
         m_isFirstDigit = true;