diff options
Diffstat (limited to 'scene/gui/range.cpp')
-rw-r--r-- | scene/gui/range.cpp | 6 |
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; |