Changeset 2863 for trunk/GSASIIphsGUI.py
- Timestamp:
- Jun 14, 2017 4:11:42 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIphsGUI.py
r2853 r2863 5497 5497 if 'Axial' not in textureData['PlotType'] and '3D' not in textureData['PlotType']: 5498 5498 PTSizer.Add(wx.StaticText(Texture,-1,' Color scheme'),0,WACV) 5499 choice = [m for m in mpl.cm.datad.keys() if not m.endswith("_r")]5499 choice = [m for m in mpl.cm.datad.keys()] #if not m.endswith("_r") 5500 5500 choice.sort() 5501 5501 colorSel = wx.ComboBox(Texture,-1,value=G2frame.ContourColor,choices=choice, … … 7642 7642 if 'Map Peaks' in data: 7643 7643 mapPeaks = np.array(data['Map Peaks']) 7644 peakMax = np. max(mapPeaks.T[0])7644 peakMax = np.fmax(mapPeaks.T[0]) 7645 7645 Ind = MapPeaks.GetSelectedRows() 7646 7646 for ind in Ind:
Note: See TracChangeset
for help on using the changeset viewer.