Merge pull request #61489 from Rindbee/reset-buttons_visible-to-false-if-tabs-is-empty
Reset buttons_visible to false while tabs is empty in TabBar::_update_cache
This commit is contained in:
commit
cea54a0357
|
@ -862,6 +862,7 @@ void TabBar::_update_hover() {
|
|||
|
||||
void TabBar::_update_cache() {
|
||||
if (tabs.is_empty()) {
|
||||
buttons_visible = false;
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue