Browse Source

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

MarianoGNU 9 years ago
parent
commit
3169b66d15
1 changed files with 4 additions and 0 deletions
  1. 4 0
      scene/2d/screen_button.cpp

+ 4 - 0
scene/2d/screen_button.cpp

@@ -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;
 	}
 	}
 }
 }