From 985da2aaab79bccb9f1f4f7257fc743c3b74f06e Mon Sep 17 00:00:00 2001 From: paulojamorim Date: Mon, 27 Jul 2009 14:12:01 +0000 Subject: [PATCH] FIX: fixed bug gradient editor initial value incorrect --- invesalius/data/mask.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/invesalius/data/mask.py b/invesalius/data/mask.py index d6952cf..324b21e 100644 --- a/invesalius/data/mask.py +++ b/invesalius/data/mask.py @@ -11,6 +11,6 @@ class Mask(): self.opacity = const.MASK_OPACITY self.threshold_range = const.THRESHOLD_RANGE self.name = const.MASK_NAME_PATTERN %(Mask.general_index+1) - self.edition_threshold_range = const.THRESHOLD_RANGE + self.edition_threshold_range = [const.THRESHOLD_OUTVALUE, const.THRESHOLD_INVALUE] self.is_shown = 1 - self.edited_points = {} + self.edited_points = {} \ No newline at end of file -- libgit2 0.21.2