Changeset 4579


Ignore:
Timestamp:
Sep 28, 2020 5:26:51 PM (3 years ago)
Author:
toby
Message:

bug fix: mising Uiso from parameter list

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIctrlGUI.py

    r4573 r4579  
    38963896        self.hisNums = ['*',]+[str(item) for item in self.hisNums]
    38973897        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')]
    38993899        self.choiceDict['Phase'] = G2obj.SortVariables(phasNames)
    39003900        self.phasNums = sorted(['*',]+list(set([item.split(':')[0] for item in phasNames])))
    39013901        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')])))
    39033903        hapNames = [':'.join(item) for item in splitNames if item[0] and item[1]]
    39043904        self.choiceDict['Phase/Histo'] = G2obj.SortVariables(hapNames)
Note: See TracChangeset for help on using the changeset viewer.