You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 19:31:35 +00:00
Fix crash if TouchScreenButton is pressed while exiting the tree
(cherry picked from commit 5b8d5766f4)
This commit is contained in:
@@ -308,12 +308,14 @@ void TouchScreenButton::_release(bool p_exiting_tree) {
|
||||
if (action_id!=-1) {
|
||||
|
||||
Input::get_singleton()->action_release(action);
|
||||
InputEvent ie;
|
||||
ie.type=InputEvent::ACTION;
|
||||
ie.ID=0;
|
||||
ie.action.action=action_id;
|
||||
ie.action.pressed=false;
|
||||
get_tree()->input_event(ie);
|
||||
if (!p_exiting_tree) {
|
||||
InputEvent ie;
|
||||
ie.type=InputEvent::ACTION;
|
||||
ie.ID=0;
|
||||
ie.action.action=action_id;
|
||||
ie.action.pressed=false;
|
||||
get_tree()->input_event(ie);
|
||||
}
|
||||
}
|
||||
|
||||
if (!p_exiting_tree) {
|
||||
|
||||
Reference in New Issue
Block a user