Changeset 2997
- Timestamp:
- Aug 11, 2017 1:24:03 PM (6 years ago)
- Location:
- branch/2frame
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branch/2frame/GSASIIplot.py
r2992 r2997 4096 4096 Img = Plot.imshow(covArray,aspect='equal',cmap=acolor,interpolation='nearest',origin='lower', 4097 4097 vmin=-1.,vmax=1.) 4098 imgAx = Img. get_axes()4098 imgAx = Img.properties()['axes'] 4099 4099 ytics = imgAx.get_yticks() 4100 4100 ylabs = [varyList[int(i)] for i in ytics[:-1]] -
branch/2frame/GSASIIpwdGUI.py
r2990 r2997 4288 4288 Obj = event.GetEventObject() 4289 4289 item,key = Indx[Obj.GetId()] 4290 item[key] = Obj.GetValue() 4290 if key in ['NumPoints',]: 4291 item[key] = int(Obj.GetValue()) 4292 else: 4293 item[key] = Obj.GetValue() 4291 4294 if 'Refine' not in Obj.GetLabel(): 4292 4295 if 'FormFact' in key :
Note: See TracChangeset
for help on using the changeset viewer.