summaryrefslogtreecommitdiff
path: root/scene/gui/spin_box.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 /scene/gui/spin_box.cpp
parent789646e2010632908b0569c64190b1b37e033cb8 (diff)
parent504bc5cc6719db3bcafa5f1262b95fa2a58ec0a1 (diff)
Merge pull request #47636 from qarmin/input
Fix crashes in *_input functions
Diffstat (limited to 'scene/gui/spin_box.cpp')
-rw-r--r--scene/gui/spin_box.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/gui/spin_box.cpp b/scene/gui/spin_box.cpp
index 50b25fa7b4..9dc2afdb2d 100644
--- a/scene/gui/spin_box.cpp
+++ b/scene/gui/spin_box.cpp
@@ -100,6 +100,8 @@ void SpinBox::_release_mouse() {
}
void SpinBox::_gui_input(const Ref<InputEvent> &p_event) {
+ ERR_FAIL_COND(p_event.is_null());
+
if (!is_editable()) {
return;
}