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

This commit is contained in:
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

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