diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-07-05 00:27:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-05 00:27:08 +0200 |
commit | dc2d8d4dee22ca870dffb7a7a4508dabb18a9988 (patch) | |
tree | 5a33a53976ae83ccc4b0d5e8fb83c6abfad64dba /core/script_debugger_remote.cpp | |
parent | a8a318161bec25bf6e1c1a0421a255f017d9f41b (diff) | |
parent | 2fcbf9dd8105940cefecb9c1d666bf3002869996 (diff) | |
download | redot-engine-dc2d8d4dee22ca870dffb7a7a4508dabb18a9988.tar.gz |
Merge pull request #19229 from RandomShaper/fix-focus-steal
Fix debugger focus stealing
Diffstat (limited to 'core/script_debugger_remote.cpp')
-rw-r--r-- | core/script_debugger_remote.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/script_debugger_remote.cpp b/core/script_debugger_remote.cpp index 0473e2cc71..3955f222f9 100644 --- a/core/script_debugger_remote.cpp +++ b/core/script_debugger_remote.cpp @@ -169,6 +169,10 @@ void ScriptDebuggerRemote::debug(ScriptLanguage *p_script, bool p_can_continue) ERR_FAIL(); } + if (allow_focus_steal_pid) { + OS::get_singleton()->enable_for_stealing_focus(allow_focus_steal_pid); + } + packet_peer_stream->put_var("debug_enter"); packet_peer_stream->put_var(2); packet_peer_stream->put_var(p_can_continue); @@ -1070,6 +1074,10 @@ void ScriptDebuggerRemote::profiling_set_frame_times(float p_frame_time, float p physics_frame_time = p_physics_frame_time; } +void ScriptDebuggerRemote::set_allow_focus_steal_pid(OS::ProcessID p_pid) { + allow_focus_steal_pid = p_pid; +} + ScriptDebuggerRemote::ResourceUsageFunc ScriptDebuggerRemote::resource_usage_func = NULL; ScriptDebuggerRemote::ScriptDebuggerRemote() : @@ -1091,6 +1099,7 @@ ScriptDebuggerRemote::ScriptDebuggerRemote() : n_errors_dropped(0), last_msec(0), msec_count(0), + allow_focus_steal_pid(0), locking(false), poll_every(0), request_scene_tree(NULL), |