MOBILE-3401 tabs: Recalculate tab height if needed

main
Pau Ferrer Ocaña 2020-06-08 14:21:58 +02:00
parent 31041f5ff9
commit bf8c4d7007
1 changed files with 5 additions and 0 deletions

View File

@ -477,6 +477,11 @@ export class CoreTabsComponent implements OnInit, AfterViewInit, OnChanges, OnDe
* @param scrollElement Scroll element to check scroll position.
*/
showHideTabs(scrollElement: any): void {
if (!this.tabBarHeight && this.topTabsElement.offsetHeight != this.tabBarHeight) {
// Wrong tab height, recalculate it.
this.calculateTabBarHeight();
}
if (!this.tabBarHeight) {
// We don't have the tab bar height, this means the tab bar isn't shown.
return;