]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/control.cpp
fixed warnings after GetFont prototype change
[wxWidgets.git] / src / gtk / control.cpp
index dfbfe4b9c0eba7cf531840269c3c511f5c72f6eb..41f5cc4ea1737f5e7794e4ab4a323be70585be2f 100644 (file)
@@ -92,6 +92,14 @@ wxSize wxControl::DoGetBestSize() const
 void wxControl::PostCreation(const wxSize& size)
 {
     wxWindow::PostCreation();
+
+    // NB: GetBestSize needs to know the style, otherwise it will assume
+    //     default font and if the user uses a different font, determined
+    //     best size will be different (typically, smaller) than the desired
+    //     size. This call ensure that a style is available at the time
+    //     GetBestSize is called.
+    gtk_widget_ensure_style(m_widget);
+    
     InheritAttributes();
     ApplyWidgetStyle();
     SetInitialBestSize(size);
@@ -259,6 +267,5 @@ wxControl::GetDefaultAttributesFromGTKWidget(GtkWidget* (*widget_new)(GtkAdjustm
     return attr;
 }
 
-
 #endif // wxUSE_CONTROLS