]> git.saurik.com Git - wxWidgets.git/commitdiff
changed DoMoveWindow not to change the height of the spinbutton on mac
authorStefan Csomor <csomor@advancedconcepts.ch>
Wed, 5 Dec 2001 20:39:32 +0000 (20:39 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Wed, 5 Dec 2001 20:39:32 +0000 (20:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12886 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/spinctlg.cpp

index b48a075680610a568148d3cc86d46fbba1b49012..3488d1f07471de39fa2d982add6104f176461345 100644 (file)
@@ -228,7 +228,11 @@ void wxSpinCtrl::DoMoveWindow(int x, int y, int width, int height)
 
     wxCoord wText = width - sizeBtn.x;
     m_text->SetSize(x, y, wText, height);
+#ifdef __WXMAC__
+    m_btn->SetSize(x + wText + MARGIN, y, -1, -1);
+#else
     m_btn->SetSize(x + wText + MARGIN, y, -1, height);
+#endif
 }
 
 // ----------------------------------------------------------------------------