Skip to content

Commit

Permalink
BUG: Fix save to stack so it saves filtered image
Browse files Browse the repository at this point in the history
  • Loading branch information
tonysyu committed Dec 19, 2012
1 parent 0e08acd commit 06a8e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skimage/viewer/widgets/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __init__(self, name='Save to:', default_format='png'):
self.layout.addWidget(self.save_file)

def save_to_stack(self):
image = self.plugin.image_viewer.image.copy()
image = self.plugin.filtered_image.copy()
io.push(image)

msg = dedent('''\
Expand Down

0 comments on commit 06a8e7a

Please sign in to comment.