1
0
Fork 0

Fix uninteractable singular tab in `TabBar`

This commit is contained in:
Michael Alexsander 2021-10-27 16:13:04 -03:00
parent 16edca8415
commit 96fdb030ec
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ void TabBar::gui_input(const Ref<InputEvent> &p_event) {
}
}
if (max_drawn_tab <= 0) {
if (tabs.is_empty()) {
// Return early if there are no actual tabs to handle input for.
return;
}