Fix missing break in a switch

This commit is contained in:
Serhii Snitsaruk 2024-02-17 15:15:20 +01:00
parent 7ebdfc9026
commit b3380bd0ac
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ void BehaviorTreeView::_notification(int p_what) {
} break; } break;
case NOTIFICATION_VISIBILITY_CHANGED: { case NOTIFICATION_VISIBILITY_CHANGED: {
set_process(is_visible_in_tree()); set_process(is_visible_in_tree());
} } break;
case NOTIFICATION_PROCESS: { case NOTIFICATION_PROCESS: {
int ticks_msec = Time::get_singleton()->get_ticks_msec(); int ticks_msec = Time::get_singleton()->get_ticks_msec();
if (update_pending && (ticks_msec - last_update_msec) >= update_interval_msec) { if (update_pending && (ticks_msec - last_update_msec) >= update_interval_msec) {