Changeset 1551 for trunk/GSASIIpwdGUI.py
- Timestamp:
- Oct 31, 2014 7:08:24 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIpwdGUI.py
r1549 r1551 2324 2324 spc = controls[13] 2325 2325 SGData = G2spc.SpcGroup(spc)[1] 2326 if ssopt ['Use']:2326 if ssopt.get('Use',False): 2327 2327 print ssopt 2328 2328 SSGData = G2spc.SSpcGroup(SGData,ssopt['ssSymb']) … … 2622 2622 littleSizer.Add(zeroVar,0,WACV) 2623 2623 SSopt = wx.CheckBox(G2frame.dataDisplay,label="Super lattice?") 2624 SSopt.SetValue(ssopt ['Use'])2624 SSopt.SetValue(ssopt.get('Use',False)) 2625 2625 SSopt.Bind(wx.EVT_CHECKBOX,OnSSopt) 2626 2626 littleSizer.Add(SSopt,0,WACV) … … 2660 2660 littleSizer.Add(volVal,0,WACV) 2661 2661 mainSizer.Add(littleSizer,0) 2662 if ssopt ['Use']: #super lattice display2662 if ssopt.get('Use',False): #super lattice display 2663 2663 indChoice = ['1','2','3','4',] 2664 2664 SpSg = controls[13]
Note: See TracChangeset
for help on using the changeset viewer.