]> git.saurik.com Git - wxWidgets.git/commitdiff
Not calling _size_allocate() breaks a.o. the native wxDataViewCtrl
authorRobert Roebling <robert@roebling.de>
Fri, 23 Jan 2009 13:54:15 +0000 (13:54 +0000)
committerRobert Roebling <robert@roebling.de>
Fri, 23 Jan 2009 13:54:15 +0000 (13:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58331 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/win_gtk.cpp

index 0ef51eb2bdf680ebb9f684c4b9700bfa8f35ba88..4d7f2d5b64cfea3ffe2d11981b8d783dfc32dcb5 100644 (file)
@@ -108,12 +108,7 @@ static void size_allocate(GtkWidget* widget, GtkAllocation* alloc)
             child_alloc.height = req.height;
             if (gtk_widget_get_direction(widget) == GTK_TEXT_DIR_RTL)
                 child_alloc.x = w - child_alloc.x - child_alloc.width;
-                
-            if ((child_alloc.x != child_old_alloc.x) ||
-                (child_alloc.y != child_old_alloc.y) ||
-                (child_alloc.width != child_old_alloc.width) ||
-                (child_alloc.height != child_old_alloc.height))
-                gtk_widget_size_allocate(child->widget, &child_alloc);
+            gtk_widget_size_allocate(child->widget, &child_alloc);
         }
     }
 }