diff options
author | Rafał Mikrut <mikrutrafal@protonmail.com> | 2021-04-05 08:52:21 +0200 |
---|---|---|
committer | Rafał Mikrut <mikrutrafal@protonmail.com> | 2021-04-05 08:52:21 +0200 |
commit | 504bc5cc6719db3bcafa5f1262b95fa2a58ec0a1 (patch) | |
tree | 4dc94056680fd757e2b99197c2c3518990755202 /editor/plugins/script_editor_plugin.cpp | |
parent | a864a703ee27065795c6297aaeb72ed753d0f279 (diff) | |
download | redot-engine-504bc5cc6719db3bcafa5f1262b95fa2a58ec0a1.tar.gz |
Fix crashes in *_input functions
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index b298474406..58e6717a3d 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -2706,6 +2706,8 @@ void ScriptEditor::drop_data_fw(const Point2 &p_point, const Variant &p_data, Co } void ScriptEditor::_unhandled_key_input(const Ref<InputEvent> &p_event) { + ERR_FAIL_COND(p_event.is_null()); + if (!is_visible_in_tree() || !p_event->is_pressed() || p_event->is_echo()) { return; } |