]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/radiobox.cpp
Added background colour again
[wxWidgets.git] / src / gtk1 / radiobox.cpp
index e07e0e413d27610e3f368148213d192e2c89d441..badc40018ea4d33991daef29407ec239523bbb63 100644 (file)
@@ -397,14 +397,14 @@ void wxRadioBox::SetFont( const wxFont &font )
   
   wxControl::SetFont( font );
    
   
   wxControl::SetFont( font );
    
+  gtk_widget_set_style( m_widget, m_widgetStyle );
+  
   wxNode *node = m_boxes.First();
   while (node)
   {
     GtkButton *button = GTK_BUTTON( node->Data() );
     
   wxNode *node = m_boxes.First();
   while (node)
   {
     GtkButton *button = GTK_BUTTON( node->Data() );
     
-    gtk_widget_set_style( button->child, 
-      gtk_style_ref(
-        gtk_widget_get_style( m_widget ) ) ); 
+    gtk_widget_set_style( button->child, m_widgetStyle );
     
     node = node->Next();
   }
     
     node = node->Next();
   }
@@ -412,22 +412,20 @@ void wxRadioBox::SetFont( const wxFont &font )
 
 void wxRadioBox::SetBackgroundColour( const wxColour &colour )
 {
 
 void wxRadioBox::SetBackgroundColour( const wxColour &colour )
 {
-  return;
-
   wxCHECK_RET( m_widget != NULL, "invalid radiobox" );
   
   wxControl::SetBackgroundColour( colour );
   
   if (!m_backgroundColour.Ok()) return;
   
   wxCHECK_RET( m_widget != NULL, "invalid radiobox" );
   
   wxControl::SetBackgroundColour( colour );
   
   if (!m_backgroundColour.Ok()) return;
   
+  gtk_widget_set_style( m_widget, m_widgetStyle );
+  
   wxNode *node = m_boxes.First();
   while (node)
   {
     GtkWidget *button = GTK_WIDGET( node->Data() );
     
   wxNode *node = m_boxes.First();
   while (node)
   {
     GtkWidget *button = GTK_WIDGET( node->Data() );
     
-    gtk_widget_set_style( button, 
-      gtk_style_ref(
-        gtk_widget_get_style( m_widget ) ) ); 
+    gtk_widget_set_style( button, m_widgetStyle );
     
     node = node->Next();
   }
     
     node = node->Next();
   }