dialogs/LDElementDialog.py
changeset 1247 92588e69d853
parent 1246 101625efb1c1
child 1250 7e6de17c687a
--- a/dialogs/LDElementDialog.py	Tue Jun 11 23:08:06 2013 +0200
+++ b/dialogs/LDElementDialog.py	Tue Jun 11 23:50:44 2013 +0200
@@ -91,10 +91,12 @@
         
         for modifier, label in zip(element_modifiers, modifiers_label):
             radio_button = wx.RadioButton(self, label=label, 
-                  style=(wx.RB_GROUP if first else wx.RB_SINGLE))
+                  style=(wx.RB_GROUP if first else 0))
             radio_button.SetValue(first)
             self.Bind(wx.EVT_RADIOBUTTON, self.OnModifierChanged, radio_button)
-            left_gridsizer.AddWindow(radio_button, flag=wx.GROW)
+            left_gridsizer.AddWindow(radio_button, 
+                  border=(5 if not first and wx.Platform == '__WXMSW__' else 0),
+                  flag=wx.GROW|wx.TOP)
             self.ModifierRadioButtons[modifier] = radio_button
             first = False