- Timestamp:
- 09/27/06 22:41:38 (18 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykoticon/trunk/bin/pykoticon
r170 r172 237 237 okbutton = wx.Button(self, wx.ID_OK, "OK") 238 238 vsizer.Add(okbutton, 0, wx.ALIGN_CENTER | wx.ALL, 5) 239 239 if self.variables : 240 self.variables[0].SetFocus() 240 241 self.SetAutoLayout(True) 241 242 self.SetSizerAndFit(vsizer) 242 243 self.Layout() 244 self.Show(True) 245 self.Raise() 243 246 244 247