diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2021-04-05 11:54:08 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-05 11:54:08 +0200 | 
| commit | 77dc4c3cb6b59e826699c1590bc26b071e868216 (patch) | |
| tree | 5ba2509b65b1a9e48d916616e08c593688ee5a14 /editor/code_editor.cpp | |
| parent | 789646e2010632908b0569c64190b1b37e033cb8 (diff) | |
| parent | 504bc5cc6719db3bcafa5f1262b95fa2a58ec0a1 (diff) | |
Merge pull request #47636 from qarmin/input
Fix crashes in *_input functions
Diffstat (limited to 'editor/code_editor.cpp')
| -rw-r--r-- | editor/code_editor.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index 11be365f0a..ac8bef817b 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -109,6 +109,8 @@ void FindReplaceBar::_notification(int p_what) {  }  void FindReplaceBar::_unhandled_input(const Ref<InputEvent> &p_event) { +	ERR_FAIL_COND(p_event.is_null()); +  	Ref<InputEventKey> k = p_event;  	if (!k.is_valid() || !k->is_pressed()) {  		return; @@ -691,6 +693,8 @@ FindReplaceBar::FindReplaceBar() {  // This function should be used to handle shortcuts that could otherwise  // be handled too late if they weren't handled here.  void CodeTextEditor::_input(const Ref<InputEvent> &event) { +	ERR_FAIL_COND(event.is_null()); +  	const Ref<InputEventKey> key_event = event;  	if (!key_event.is_valid() || !key_event->is_pressed() || !text_editor->has_focus()) {  		return;  |