]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/radiobox.cpp
do accept focus in notebook as it needs it for tabs
[wxWidgets.git] / src / gtk / radiobox.cpp
index 938fe515ca061bb7452faca17e9d88b033585244..e84d215469fbda5c7e65c52463dd0f1e2aa8cb42 100644 (file)
@@ -253,6 +253,12 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
 
     m_widget = GTKCreateFrame(title);
     wxControl::SetLabel(title);
+    if ( HasFlag(wxNO_BORDER) )
+    {
+        // If we don't do this here, the wxNO_BORDER style is ignored in Show()
+        gtk_frame_set_shadow_type(GTK_FRAME(m_widget), GTK_SHADOW_NONE);
+    }
+
 
     // majorDim may be 0 if all trailing parameters were omitted, so don't
     // assert here but just use the correct value for it