]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/radiobox.cpp
show the selected item with customs colour correctly when the control doesn't have...
[wxWidgets.git] / src / univ / radiobox.cpp
index 5c434fa20b5512059458c3514a1ed105e50b015d..c758abf74bae56eb5703cde99aa240051ed55315 100644 (file)
@@ -17,7 +17,7 @@
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation "univradiobox.h"
 #endif
 
@@ -153,6 +153,11 @@ bool wxRadioBox::Create(wxWindow *parent,
         SetClientSize(DoGetBestClientSize());
     }
 
+    // Need to move the radiobox in order to move the radio buttons
+    wxPoint actualPos = GetPosition();
+    wxSize actualSize = GetSize();
+    DoMoveWindow(actualPos.x, actualPos.y, actualSize.x, actualSize.y);
+
     // radiobox should already have selection so select at least one item
     SetSelection(0);