Merge pull request #24807 from guilhermefelipecgs/fix_state_machine_scroll

Fix state machine scroll
This commit is contained in:
Rémi Verschelde 2019-01-07 15:10:53 +01:00 committed by GitHub
commit 2e8ca4710a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -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;