fix: TouchScreenButton should stop propagating action when button is removed from scene

This commit is contained in:
MarianoGNU 2015-12-27 19:06:30 -03:00
parent 3a3ce982b0
commit 3169b66d15

View File

@ -102,6 +102,10 @@ void TouchScreenButton::_notification(int p_what) {
action_id=-1; action_id=-1;
} }
} break; } break;
case NOTIFICATION_EXIT_TREE: {
if (is_pressed())
Input::get_singleton()->action_release(action);
} break;
} }
} }