Changeset 4011
- Timestamp:
- 04/01/08 19:38:18 (8 months ago)
- Files:
-
- trunk/ide/wizards/QuickLayoutWizard.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ide/wizards/QuickLayoutWizard.py
r3720 r4011 290 290 FontSize=8, FontItalic=True) 291 291 self.Sizer.append(lbl, halign="center") 292 lbl = dabo.ui.dLabel(self, Caption=_("Right-click a control to change its type"),292 self.rClickLbl = dabo.ui.dLabel(self, Caption=_("Right-click a control to change its type"), 293 293 FontSize=8, FontItalic=True) 294 self.Sizer.append( lbl, halign="center", border=3, borderSides="top")294 self.Sizer.append(self.rClickLbl, halign="center", border=3, borderSides="top") 295 295 self.samplePanel = dabo.ui.dScrollPanel(self, BackColor="papayawhip") 296 296 itm = self.Sizer.append1x(self.samplePanel, border=3, borderSides="top") … … 350 350 351 351 # Create the new controls 352 self.rClickLbl.Visible = (layType.lower() != "grid") 352 353 if layType.lower() == "grid": 353 354 self.makeGrid()
