]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/radiobox.cpp
Fixed module code
[wxWidgets.git] / src / gtk / radiobox.cpp
index fab780db60238ff22848fc71a789a2ab25135762..c1f3fcc165742d2fd1fceef5b56c96cd4e7fef4f 100644 (file)
@@ -104,7 +104,7 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
        
       gtk_myfixed_put( GTK_MYFIXED(m_parent->m_wxwindow), GTK_WIDGET(m_radio), x, y );
       
-      int tmp = 22+gdk_string_measure( GTK_WIDGET(m_radio)->style->font, choices[i] );
+      int tmp = 25+gdk_string_measure( GTK_WIDGET(m_radio)->style->font, choices[i] );
       if (tmp > maxLen) maxLen = tmp;
       
       width = m_width-10;
@@ -159,6 +159,10 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
   if (newSize.y == -1) newSize.y = height;
   SetSize( newSize.x, newSize.y );
   
+  m_parent->AddChild( this );
+
+  (m_parent->m_insertCallback)( m_parent, this );
+  
   PostCreation();
   
   SetLabel( title );