summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Nespithal <richard@nespithal.com>2016-01-08 13:07:15 +0100
committerRichard Nespithal <richard@nespithal.com>2016-01-08 15:57:03 +0100
commitb123bc4a2a9c07fcfd27a84109960bda158b3b9d (patch)
tree40aa1a2824891ff185d91f4a41c1752ab6db8db7
parent79c1392d17156aeb8d6a2abca16db59b1f8312cc (diff)
do not return zero with minus-sign within range value, fixes #3221
-rw-r--r--scene/gui/range.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/scene/gui/range.cpp b/scene/gui/range.cpp
index 25b7952da1..d3b7521c9a 100644
--- a/scene/gui/range.cpp
+++ b/scene/gui/range.cpp
@@ -77,7 +77,11 @@ void Range::set_val(double p_val) {
if (p_val<shared->min)
p_val=shared->min;
-
+
+ //avoid to set -0
+ if (p_val == 0)
+ p_val = 0;
+
if (shared->val==p_val)
return;