mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
Fix state machine scroll
This commit is contained in:
parent
53516d7a9e
commit
59df3ca911
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user