Skip to content

Commit

Permalink
refs #8428. Loop over entire pks wksp.
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Nov 12, 2013
1 parent 43d9791 commit 258ddad
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Code/Mantid/scripts/CrystalTools/PeakReport.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,7 @@ def make_report(self, md_workspace, peaks_workspace, pdf_name = None):
peaks_presenter.setForegroundColor(self.__foreground_color)

image_files = []
#for i in range(peaks_workspace.rowCount()):
for i in range(5):
for i in range(peaks_workspace.rowCount()):
peaks_presenter.zoomToPeak(i)
filename = os.path.join(self.__out_location, str(i) + ".png")
# Add for clean-up later
Expand Down

0 comments on commit 258ddad

Please sign in to comment.