Changeset b0b09b9 in sasview for src/sas/qtgui/Plotting/Plotter.py
- Timestamp:
- Oct 26, 2017 3:13:05 AM (7 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 895e7359
- Parents:
- def64a0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Plotting/Plotter.py
- Property mode changed from 100644 to 100755
rf0bb711 rb0b09b9 87 87 marker = PlotUtilities.SHAPES[marker] 88 88 except KeyError: 89 marker = PlotUtilities.SHAPES.values()[marker]89 marker = list(PlotUtilities.SHAPES.values())[marker] 90 90 91 91 assert marker is not None … … 203 203 Adds operations on all plotted sets of data to the context menu 204 204 """ 205 for id in self.plot_dict.keys():205 for id in list(self.plot_dict.keys()): 206 206 plot = self.plot_dict[id] 207 207 … … 388 388 Deletes the selected plot from the chart 389 389 """ 390 if id not in self.plot_dict.keys():390 if id not in list(self.plot_dict.keys()): 391 391 return 392 392 … … 479 479 """ 480 480 # Transform all the plots on the chart 481 for id in self.plot_dict.keys():481 for id in list(self.plot_dict.keys()): 482 482 current_plot = self.plot_dict[id] 483 483 if current_plot.id == "fit":
Note: See TracChangeset
for help on using the changeset viewer.