Changeset 3712 for trunk/GSASIIplot.py
- Timestamp:
- Oct 30, 2018 8:50:07 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIplot.py
r3681 r3712 4104 4104 del Peaks['Peaks'][lineNo-2] 4105 4105 G2frame.itemPicked = None 4106 G2pdG.UpdatePDFPeaks(G2frame,Peaks,data)4107 PlotISFG(G2frame,data,peaks=Peaks,newPlot=False)4106 wx.CallAfter(G2pdG.UpdatePDFPeaks,G2frame,Peaks,data) 4107 wx.CallAfter(PlotISFG,G2frame,data,peaks=Peaks,newPlot=False) 4108 4108 4109 4109 # PlotISFG continues here … … 4172 4172 Plot.set_xlabel(r'r,$\AA$',fontsize=14) 4173 4173 Plot.set_ylabel(r'G(r), $\AA^{-2}$',fontsize=14) 4174 if lim is not None: 4175 lim[0] = list([lim[0][0],data['Rmax']]) 4176 Plot.set_xlim(lim[0]) 4174 4177 else: 4175 4178 Plot.set_xlabel(r'$Q,\AA^{-1}$',fontsize=14) … … 4275 4278 Yb = [0.,-10.*np.pi*numbDen] 4276 4279 Plot.plot(Xb,Yb,color='k',dashes=(5,5)) 4280 Plot.set_xlim([0.,PDFdata['Rmax']]) 4277 4281 elif plotType == 'F(Q)': 4278 4282 Plot.axhline(0.,color='k')
Note: See TracChangeset
for help on using the changeset viewer.