]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/spinbutt.cpp
Fix broken and missing DataView interface items for Phoenix
[wxWidgets.git] / src / gtk / spinbutt.cpp
index 52e8d4ce8f273f4c18af14ee8f4faa438daecfe2..5cb5b6bb897a175a0f4967a3df2f3faa44f4ffef 100644 (file)
@@ -38,7 +38,7 @@ gtk_value_changed(GtkSpinButton* spinbutton, wxSpinButton* win)
     const double value = gtk_spin_button_get_value(spinbutton);
     const int pos = int(value);
     const int oldPos = win->m_pos;
-    if (!win->m_hasVMT || g_blockEventsOnDrag || pos == oldPos)
+    if (g_blockEventsOnDrag || pos == oldPos)
     {
         win->m_pos = pos;
         return;