diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-06-30 16:58:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-30 16:58:46 +0200 |
| commit | 5f2295f2dfdbf1ac4e63b562e4cef71f2fda4036 (patch) | |
| tree | e55f07e3c6ae4a1986bba3d53e979c4d1414576b /editor/plugins/script_editor_plugin.cpp | |
| parent | f3c5f12e3965b0a3147a9264f5ac42599abca672 (diff) | |
| parent | 438c380458ee284d44f0561f86c2468ec11adc3b (diff) | |
| download | redot-engine-5f2295f2dfdbf1ac4e63b562e4cef71f2fda4036.tar.gz | |
Merge pull request #39986 from reduz/app-inout-notification
Add a separate application focus/in notification
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index 96079d5418..fd415d40da 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -1337,7 +1337,7 @@ void ScriptEditor::_notification(int p_what) { editor->disconnect("stop_pressed", callable_mp(this, &ScriptEditor::_editor_stop)); } break; - case NOTIFICATION_WM_FOCUS_IN: { + case NOTIFICATION_WM_WINDOW_FOCUS_IN: { _test_script_times_on_disk(); _update_modified_scripts_for_external_editor(); } break; |
