Changeset 2636 for trunk/GSASII.py
- Timestamp:
- Jan 17, 2017 10:23:20 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASII.py
r2635 r2636 2430 2430 self.dataDisplayPhaseText = '' 2431 2431 self.lastTreeSetting = [] 2432 2432 self.ExpandingAll = False 2433 2433 2434 arg = sys.argv 2434 2435 if len(arg) > 1 and arg[1]: … … 2468 2469 self.TreeItemDelete = False 2469 2470 else: 2471 if self.ExpandingAll: 2472 #if GSASIIpath.GetConfigValue('debug'): print('Skipping Tree selection due to ExpandAll') 2473 return 2470 2474 pltNum = self.G2plotNB.nb.GetSelection() 2471 2475 if pltNum >= 0: #to avoid the startup with no plot! … … 3324 3328 3325 3329 def ExpandAll(self,event): 3326 self.PatternTree.ExpandAll() 3330 self.ExpandingAll = True 3331 try: 3332 self.PatternTree.ExpandAll() 3333 finally: 3334 self.ExpandingAll = False 3327 3335 3328 3336 def ExitMain(self, event):
Note: See TracChangeset
for help on using the changeset viewer.