1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Merge pull request #42733 from madmiraal/fix-41281

Ensure grid index is valid before trying to change value.
This commit is contained in:
Rémi Verschelde
2020-10-12 10:55:53 +02:00
committed by GitHub

View File

@@ -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)) {