]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/stattext.cpp
VTK wrapper of vtkRenderWindow for wxPython. Tested on MSW so far.
[wxWidgets.git] / src / gtk / stattext.cpp
index 2055e54fd51de5510f31cdb94a6fd18cd808c2d1..011b4b21a678e42ee5a3e37690acdf289077a082 100644 (file)
@@ -62,6 +62,8 @@ bool wxStaticText::Create(wxWindow *parent,
     wxControl::SetLabel(label);
     m_widget = gtk_label_new( m_label.mbc_str() );
 
+    SetFont( parent->GetFont() );
+
     GtkJustification justify;
     if ( style & wxALIGN_CENTER )
       justify = GTK_JUSTIFY_CENTER;
@@ -89,8 +91,6 @@ bool wxStaticText::Create(wxWindow *parent,
 
     SetBackgroundColour( parent->GetBackgroundColour() );
     SetForegroundColour( parent->GetForegroundColour() );
-    SetFont( parent->GetFont() );
-
     Show( TRUE );
 
     return TRUE;