Changeset 3890 for trunk/GSASIIphsGUI.py
- Timestamp:
- Apr 12, 2019 9:30:04 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIphsGUI.py
r3888 r3890 6240 6240 drawingData['unitCellBox'] = unitCellBox.GetValue() 6241 6241 G2plt.PlotStructure(G2frame,data) 6242 wx.CallAfter(UpdateDrawOptions) 6242 6243 6243 6244 def OnShowHyd(event): … … 6344 6345 showSizer.Add(line2Sizer) 6345 6346 6346 line3Sizer = wx.BoxSizer(wx.HORIZONTAL) 6347 6348 showCS = wx.CheckBox(drawOptions,-1,label=' Show contour slice?') 6349 showCS.Bind(wx.EVT_CHECKBOX, OnShowSlice) 6350 showCS.SetValue(drawingData['showSlice']) 6351 line3Sizer.Add(showCS,0,WACV) 6352 6353 showSizer.Add(line3Sizer) 6347 if generalData['Map']['rhoMax'] and drawingData['unitCellBox']: 6348 line3Sizer = wx.BoxSizer(wx.HORIZONTAL) 6349 6350 showCS = wx.CheckBox(drawOptions,-1,label=' Show contour slice? NB: can be very slow for large structures!') 6351 showCS.Bind(wx.EVT_CHECKBOX, OnShowSlice) 6352 showCS.SetValue(drawingData['showSlice']) 6353 line3Sizer.Add(showCS,0,WACV) 6354 6355 showSizer.Add(line3Sizer) 6354 6356 6355 6357 return showSizer
Note: See TracChangeset
for help on using the changeset viewer.