]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/toplevel.cpp
Don't apply bounding box adjustment when using generic tree control
[wxWidgets.git] / src / gtk / toplevel.cpp
index 85f4b536dd1f9949cff890da5a1b9552d189bb57..173c833308c70f158bb9ecd43ad05fec0120d3e4 100644 (file)
@@ -912,16 +912,13 @@ void wxTopLevelWindowGTK::DoSetSize( int x, int y, int width, int height, int si
     {
         if ((m_x != old_x) || (m_y != old_y))
         {
-            gtk_widget_set_uposition( m_widget, m_x, m_y );
+            gtk_window_move( GTK_WINDOW(m_widget), m_x, m_y );
         }
     }
 
     if ((m_width != old_width) || (m_height != old_height))
     {
-        if (m_widget->window)
-            gdk_window_resize( m_widget->window, m_width, m_height );
-        else
-            gtk_window_set_default_size( GTK_WINDOW(m_widget), m_width, m_height );
+        gtk_window_resize( GTK_WINDOW(m_widget), m_width, m_height );
 
         /* we set the size in GtkOnSize, i.e. mostly the actual resizing is
            done either directly before the frame is shown or in idle time