1
0
Fork 0

No Issue - Fixes flash when toggling tab tray (#11826)

master
Jeff Boek 2020-06-22 14:49:07 -07:00 committed by GitHub
parent 18cc4c95c1
commit c7b1f215c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -212,7 +212,11 @@ class TabTrayView(
}
}
view.tabsTray.asView().isVisible = !hasNoTabs
view.tabsTray.asView().visibility = if (hasNoTabs) {
View.INVISIBLE
} else {
View.VISIBLE
}
view.tab_tray_overflow.isVisible = !hasNoTabs
}
}