Skip to content

Commit

Permalink
Re #4303 Fixed stitcher
Browse files Browse the repository at this point in the history
  • Loading branch information
mdoucet committed Feb 13, 2012
1 parent 0c43ff4 commit 8bca3c2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ def _apply(self):
data = DataSet(item.name)
data.load(True, True)
xmin,xmax = data.get_range()
data.set_range(xmin+0.002,xmax-0.001)
item.set_user_data(data)

if item.is_selected():
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,7 @@ def _apply(self):
if self._high_q_data is not None:
xmin = util._check_and_get_float_line_edit(self._content.medium_min_edit)
xmax = util._check_and_get_float_line_edit(self._content.medium_max_edit)
self._high_q_data.set_range(xmin,xmax)
s.append(self._high_q_data)
if self._referenceID==2:
scale = util._check_and_get_float_line_edit(self._content.high_scale_edit)
Expand Down

0 comments on commit 8bca3c2

Please sign in to comment.