Changeset 3212 for trunk/GSASIIctrlGUI.py
- Timestamp:
- Jan 4, 2018 10:29:00 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r3209 r3212 3005 3005 ncol = self.table[0].count(',')+1 3006 3006 tableSizer = wx.FlexGridSizer(0,2*ncol+3,0,0) 3007 for j,item in enumerate(self.table): 3007 j = 0 3008 for item in self.table: 3009 if 'for' in item: 3010 mainSizer.Add(tableSizer,0,wx.ALIGN_LEFT) 3011 mainSizer.Add(wx.StaticText(self.panel,label=item),0,WACV) 3012 tableSizer = wx.FlexGridSizer(0,2*ncol+3,0,0) 3013 continue 3008 3014 num,flds = item.split(')') 3009 3015 tableSizer.Add(wx.StaticText(self.panel,label=' %s '%(num+')')),0,WACV|wx.ALIGN_LEFT) … … 3016 3022 if not j%2: 3017 3023 tableSizer.Add((20,0)) 3024 j += 1 3018 3025 mainSizer.Add(tableSizer,0,wx.ALIGN_LEFT) 3019 3026 btnsizer = wx.StdDialogButtonSizer()
Note: See TracChangeset
for help on using the changeset viewer.