Changeset 3030 for trunk/GSASIIplot.py
- Timestamp:
- Aug 28, 2017 3:29:45 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIplot.py
r3023 r3030 1365 1365 G2frame.SinglePlot = True 1366 1366 G2frame.Contour = not G2frame.Contour 1367 if G2frame.Contour: 1368 G2frame.plotStyle['qPlot'] = False 1369 G2frame.plotStyle['dPlot'] = False 1367 1370 elif event.key == 'q': 1368 1371 if 'PWDR' in plottype: 1369 1372 newPlot = True 1370 1373 G2frame.plotStyle['qPlot'] = not G2frame.plotStyle['qPlot'] 1374 if G2frame.plotStyle['qPlot']: 1375 G2frame.Contour = False 1371 1376 G2frame.plotStyle['dPlot'] = False 1372 1377 elif plottype in ['SASD','REFD']: … … 1375 1380 elif event.key == 't' and 'PWDR' in plottype: 1376 1381 G2frame.plotStyle['dPlot'] = not G2frame.plotStyle['dPlot'] 1382 if G2frame.plotStyle['dPlot']: 1383 G2frame.Contour = False 1377 1384 G2frame.plotStyle['qPlot'] = False 1378 1385 newPlot = True
Note: See TracChangeset
for help on using the changeset viewer.