Changeset 3122


Ignore:
Timestamp:
Oct 4, 2017 2:42:36 PM (6 years ago)
Author:
vondreele
Message:

fix problem viewing seq. results if 1st histogram is skipped

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIdataGUI.py

    r3101 r3122  
    67786778    if 'SeqParFitEqList' not in data: data['SeqParFitEqList'] = []
    67796779    histNames = data['histNames']
     6780    foundNames = [name for name in histNames if name in data]
     6781    histNames = foundNames
    67806782    if G2frame.dataDisplay:
    67816783        G2frame.dataDisplay.Destroy()
  • trunk/GSASIIimgGUI.py

    r3039 r3122  
    200200                        varyList.append('dist')
    201201                        sigList.append(None)
    202                     vals.append(Data['setdist'])
     202                    vals.append(Data.get('setdist',Data['distance']))
    203203                    varyList.append('setdist')
    204204                    sigList.append(None)
Note: See TracChangeset for help on using the changeset viewer.