diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-11-28 15:32:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-28 15:32:27 +0100 |
commit | 8e4f10a3a19a09dd586b6cd4df71ad8e8fe48cc2 (patch) | |
tree | 882dd71aa3be2e698e7e98df9f2dff05e2de43e7 | |
parent | bb1201af1f3b846a69e06c5317b195dafdd0452c (diff) | |
parent | babc5048dd23e80c9fb4a41a3f482ec8a8900ab9 (diff) |
Merge pull request #7200 from volzhs/fix-anim-scroll
Fix scroll bar moving in AnimationPlayer editor
-rw-r--r-- | scene/gui/scroll_bar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/scroll_bar.cpp b/scene/gui/scroll_bar.cpp index d8365feb24..9a214b5efc 100644 --- a/scene/gui/scroll_bar.cpp +++ b/scene/gui/scroll_bar.cpp @@ -832,7 +832,7 @@ ScrollBar::ScrollBar(Orientation p_orientation) if (focus_by_default) set_focus_mode( FOCUS_ALL ); - + set_step(0); } |