diff --git a/.config/quickshell/modules/common/widgets/PrimaryTabBar.qml b/.config/quickshell/modules/common/widgets/PrimaryTabBar.qml index a437da1c..cd048e8b 100644 --- a/.config/quickshell/modules/common/widgets/PrimaryTabBar.qml +++ b/.config/quickshell/modules/common/widgets/PrimaryTabBar.qml @@ -14,10 +14,7 @@ ColumnLayout { property color colBorder: Appearance?.m3colors.m3outlineVariant ?? "#C6C6D0" signal currentIndexChanged(int index) - property bool centerTabBar: { - console.log("PARREND WIDHTH", parent.width) - parent.width > 500 - } + property bool centerTabBar: parent.width > 500 Layout.fillWidth: !centerTabBar Layout.alignment: Qt.AlignHCenter implicitWidth: Math.max(tabBar.implicitWidth, 600) diff --git a/.config/quickshell/shell.qml b/.config/quickshell/shell.qml index 523f6a4e..bc2cb022 100644 --- a/.config/quickshell/shell.qml +++ b/.config/quickshell/shell.qml @@ -1,5 +1,6 @@ //@ pragma UseQApplication //@ pragma Env QS_NO_RELOAD_POPUP=1 +//@ pragma Env QT_QUICK_CONTROLS_STYLE=Basic import "./modules/common/" import "./modules/bar/"