[fenix] No Issue - Fixes flash when toggling tab tray (https://github.com/mozilla-mobile/fenix/pull/11826)

pull/600/head
Jeff Boek 4 years ago committed by GitHub
parent 708ea29d2c
commit 37c5a0d4f1

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

Loading…
Cancel
Save