From 9fbef6f7db4ed8fc1d3767ffb4d856401b5bd339 Mon Sep 17 00:00:00 2001 From: kobewi Date: Thu, 22 Apr 2021 01:18:30 +0200 Subject: Fix GridMap still drawing when Alt+Tabbing --- modules/gridmap/grid_map_editor_plugin.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/gridmap/grid_map_editor_plugin.cpp b/modules/gridmap/grid_map_editor_plugin.cpp index 74ae45a46e..4b241aa9a7 100644 --- a/modules/gridmap/grid_map_editor_plugin.cpp +++ b/modules/gridmap/grid_map_editor_plugin.cpp @@ -1100,6 +1100,16 @@ void GridMapEditor::_notification(int p_what) { options->set_icon(get_theme_icon("GridMap", "EditorIcons")); search_box->set_right_icon(get_theme_icon("Search", "EditorIcons")); } break; + + case NOTIFICATION_APPLICATION_FOCUS_OUT: { + if (input_action == INPUT_PAINT) { + // Simulate mouse released event to stop drawing when editor focus exists. + Ref release; + release.instance(); + release->set_button_index(MOUSE_BUTTON_LEFT); + forward_spatial_input_event(nullptr, release); + } + } break; } } -- cgit v1.2.3