shell: Remove nonexistent tabbar property in Panel

tabbar doesn't seem to exist, so it causes errors in the console.
Removing setting this nonexistent property.
This commit is contained in:
Devin Lin 2025-03-19 10:54:51 -04:00
parent 65f09fa012
commit bd895574ff
2 changed files with 0 additions and 11 deletions

View file

@ -32,14 +32,6 @@ ContainmentItem {
setWindowProperties()
}
// filled in by the shell (Panel.qml)
property var tabBar: null
onTabBarChanged: {
if (tabBar) {
tabBar.visible = false;
}
}
MobileShell.HapticsEffect {
id: haptics
}

View file

@ -30,9 +30,6 @@ Item {
if (containment.panel !== undefined) {
containment.panel = panel;
}
if (containment.tabBar !== undefined) {
containment.tabBar = tabBar;
}
}
}