Changeset 4579
- Timestamp:
- Sep 28, 2020 5:26:51 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r4573 r4579 3896 3896 self.hisNums = ['*',]+[str(item) for item in self.hisNums] 3897 3897 self.hisVars = sorted(list(set([' ',]+[item[2] for item in splitNames if not item[0]]))) 3898 phasNames = [':'.join(item) for item in splitNames if not item[1] and 'is' not in item[2]]3898 phasNames = [':'.join(item) for item in splitNames if not item[1] and not item[2].startswith('is')] 3899 3899 self.choiceDict['Phase'] = G2obj.SortVariables(phasNames) 3900 3900 self.phasNums = sorted(['*',]+list(set([item.split(':')[0] for item in phasNames]))) 3901 3901 if '' in self.phasNums: self.phasNums.remove('') 3902 self.phasVars = sorted(list(set([' ',]+[item[2] for item in splitNames if not item[1] and 'is' not in item[2]])))3902 self.phasVars = sorted(list(set([' ',]+[item[2] for item in splitNames if not item[1] and not item[2].startswith('is')]))) 3903 3903 hapNames = [':'.join(item) for item in splitNames if item[0] and item[1]] 3904 3904 self.choiceDict['Phase/Histo'] = G2obj.SortVariables(hapNames)
Note: See TracChangeset
for help on using the changeset viewer.