]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/spinbutt.cpp
Fixed wxZlibOutputStream::Sync
[wxWidgets.git] / src / gtk1 / spinbutt.cpp
index 898eb4f4b935bce55eaa5aa3ad19c09de99503f4..762d4cc3be54b5e710e6a1e2d74349dd4c2a197a 100644 (file)
@@ -189,6 +189,10 @@ void wxSpinButton::SetRange(int minVal, int maxVal)
     m_adjust->upper = fmax;
 
     gtk_signal_emit_by_name( GTK_OBJECT(m_adjust), "changed" );
+    
+    // these two calls are required due to some bug in GTK
+    Refresh();
+    SetFocus();
 }
 
 void wxSpinButton::OnSize( wxSizeEvent &WXUNUSED(event) )