diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-10-12 08:51:56 +0100 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-10-12 08:53:09 +0100 |
commit | f98acd5cfb455d7402cd7e263251a8df41746782 (patch) | |
tree | 4577c6e2efd5d3411668118727f758b2f87fbf6e | |
parent | bf37ab52b3ee4b14f235cfa1ea9e48c24c616bb3 (diff) |
Ensure grid index is valid before trying to change value.
-rw-r--r-- | editor/editor_properties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index 4c8af615b4..9e68ef2f35 100644 --- a/editor/editor_properties.cpp +++ b/editor/editor_properties.cpp @@ -614,7 +614,7 @@ public: const Ref<InputEventMouseButton> mb = p_ev; - if (mb.is_valid() && mb->get_button_index() == BUTTON_LEFT && mb->is_pressed()) { + if (mb.is_valid() && mb->get_button_index() == BUTTON_LEFT && mb->is_pressed() && hovered_index > 0) { // Toggle the flag. // We base our choice on the hovered flag, so that it always matches the hovered flag. if (value & (1 << hovered_index)) { |