diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-23 00:47:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-23 00:47:52 +0100 |
commit | e363f404a5605517b1b901a7c90986741bc29d22 (patch) | |
tree | 5226cf7d645cd17f9dcde673a5ef5d229fdf1767 /modules | |
parent | 668d6a1c5ccface4f4ecc95ce4cf00cd5d90b1db (diff) | |
parent | 74bfe88267263297b43fef35fd9f32a91750d4d2 (diff) |
Merge pull request #57000 from KoBeWi/UNLIMITED_PANNING
Diffstat (limited to 'modules')
-rw-r--r-- | modules/visual_script/editor/visual_script_editor.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/visual_script/editor/visual_script_editor.cpp b/modules/visual_script/editor/visual_script_editor.cpp index 8d2d31b234..683248cb5a 100644 --- a/modules/visual_script/editor/visual_script_editor.cpp +++ b/modules/visual_script/editor/visual_script_editor.cpp @@ -42,6 +42,7 @@ #include "editor/editor_node.h" #include "editor/editor_resource_preview.h" #include "editor/editor_scale.h" +#include "scene/gui/view_panner.h" #include "scene/main/window.h" #ifdef TOOLS_ENABLED @@ -3912,7 +3913,8 @@ void VisualScriptEditor::_notification(int p_what) { switch (p_what) { case NOTIFICATION_ENTER_TREE: case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: { - graph->set_panning_scheme((GraphEdit::PanningScheme)EDITOR_GET("interface/editors/sub_editor_panning_scheme").operator int()); + graph->get_panner()->setup((ViewPanner::ControlScheme)EDITOR_GET("editors/panning/sub_editor_panning_scheme").operator int(), ED_GET_SHORTCUT("canvas_item_editor/pan_view"), bool(EditorSettings::get_singleton()->get("editors/panning/simple_panning"))); + graph->set_warped_panning(bool(EditorSettings::get_singleton()->get("editors/panning/warped_mouse_panning"))); } break; case NOTIFICATION_READY: { |