From ca7e92ed39587075d71a80271855234d6167e503 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sun, 26 Jun 2022 02:23:59 +0200 Subject: Request attention on the editor window when done recording a movie Recording a movie can take a long time, so the user may not be paying attention to the editor while leaving a movie rendering in the background. This also allows editor plugins to access the state of Movie Maker mode within the editor (and set it). --- editor/debugger/editor_debugger_node.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'editor/debugger') diff --git a/editor/debugger/editor_debugger_node.cpp b/editor/debugger/editor_debugger_node.cpp index e13af59d69..517baf4fcd 100644 --- a/editor/debugger/editor_debugger_node.cpp +++ b/editor/debugger/editor_debugger_node.cpp @@ -224,6 +224,12 @@ void EditorDebuggerNode::stop() { if (server.is_valid()) { server->stop(); EditorNode::get_log()->add_message("--- Debugging process stopped ---", EditorLog::MSG_TYPE_EDITOR); + + if (EditorNode::get_singleton()->is_movie_maker_enabled()) { + // Request attention in case the user was doing something else when movie recording is finished. + DisplayServer::get_singleton()->window_request_attention(); + } + server.unref(); } // Also close all debugging sessions. -- cgit v1.2.3