From bd895574ffa05f51cb53fb27fb4084a044a17f28 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Wed, 19 Mar 2025 10:54:51 -0400 Subject: [PATCH] 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. --- containments/taskpanel/package/contents/ui/main.qml | 8 -------- shell/contents/views/Panel.qml | 3 --- 2 files changed, 11 deletions(-) diff --git a/containments/taskpanel/package/contents/ui/main.qml b/containments/taskpanel/package/contents/ui/main.qml index 36c6f3d8..613483a6 100644 --- a/containments/taskpanel/package/contents/ui/main.qml +++ b/containments/taskpanel/package/contents/ui/main.qml @@ -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 } diff --git a/shell/contents/views/Panel.qml b/shell/contents/views/Panel.qml index 7dcba88c..b5a82f3c 100644 --- a/shell/contents/views/Panel.qml +++ b/shell/contents/views/Panel.qml @@ -30,9 +30,6 @@ Item { if (containment.panel !== undefined) { containment.panel = panel; } - if (containment.tabBar !== undefined) { - containment.tabBar = tabBar; - } } }