diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-01-07 15:10:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-07 15:10:53 +0100 |
commit | 2e8ca4710ace2a069da25365a0428c656185fb03 (patch) | |
tree | e88e17df38142bd5163b37ffdff34236d84da1a6 | |
parent | dab650fcaa3eb37deee5118d678a3763ac78a58a (diff) | |
parent | 59df3ca91170ce8d40adb9751efd47ff17ffb032 (diff) |
Merge pull request #24807 from guilhermefelipecgs/fix_state_machine_scroll
Fix state machine scroll
-rw-r--r-- | editor/plugins/animation_state_machine_editor.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editor/plugins/animation_state_machine_editor.cpp b/editor/plugins/animation_state_machine_editor.cpp index 2a2f3ee635..431d63aefc 100644 --- a/editor/plugins/animation_state_machine_editor.cpp +++ b/editor/plugins/animation_state_machine_editor.cpp @@ -606,7 +606,7 @@ void AnimationNodeStateMachineEditor::_state_machine_draw() { state_machine->get_node_list(&nodes); node_rects.clear(); - Rect2 scroll_range(Point2(), state_machine_draw->get_size()); + Rect2 scroll_range; //snap lines if (dragging_selected) { @@ -823,7 +823,8 @@ void AnimationNodeStateMachineEditor::_state_machine_draw() { } } - scroll_range = scroll_range.grow(200 * EDSCALE); + scroll_range.position -= state_machine_draw->get_size(); + scroll_range.size += state_machine_draw->get_size() * 2.0; //adjust scrollbars updating = true; |