summaryrefslogtreecommitdiff
path: root/editor/editor_help.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-04-05 11:54:08 +0200
committerGitHub <noreply@github.com>2021-04-05 11:54:08 +0200
commit77dc4c3cb6b59e826699c1590bc26b071e868216 (patch)
tree5ba2509b65b1a9e48d916616e08c593688ee5a14 /editor/editor_help.cpp
parent789646e2010632908b0569c64190b1b37e033cb8 (diff)
parent504bc5cc6719db3bcafa5f1262b95fa2a58ec0a1 (diff)
Merge pull request #47636 from qarmin/input
Fix crashes in *_input functions
Diffstat (limited to 'editor/editor_help.cpp')
-rw-r--r--editor/editor_help.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp
index 283713cd3c..a747652a2f 100644
--- a/editor/editor_help.cpp
+++ b/editor/editor_help.cpp
@@ -1908,6 +1908,8 @@ void FindBar::_hide_bar() {
}
void FindBar::_unhandled_input(const Ref<InputEvent> &p_event) {
+ ERR_FAIL_COND(p_event.is_null());
+
Ref<InputEventKey> k = p_event;
if (k.is_valid()) {
if (k->is_pressed() && (rich_text_label->has_focus() || is_a_parent_of(get_focus_owner()))) {