diff --git a/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/HBarContent.qml b/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/HBarContent.qml index cd0fe80ea..ebd79a96a 100644 --- a/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/HBarContent.qml +++ b/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/HBarContent.qml @@ -30,16 +30,10 @@ Item { anchors.right: !root.vertical ? centerSide.left : parent.right anchors.bottom: root.vertical ? parent.bottom : undefined HBarUserFallbackComponentRepeater { - componentNames: { - print(JSON.stringify([ + componentNames: [ ...root.centerLeftWidgets, ...(root.centerLeftWidgets.length > 0 ? [invisibleItem] : []), - ], null, 2)); - return [ - ...root.centerLeftWidgets, - ...(root.centerLeftWidgets.length > 0 ? [invisibleItem] : []), - ]; - } + ] } } diff --git a/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/widgets/HWorkspaces.qml b/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/widgets/HWorkspaces.qml index 4625ed9a6..69514ebea 100644 --- a/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/widgets/HWorkspaces.qml +++ b/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/widgets/HWorkspaces.qml @@ -136,6 +136,7 @@ Item { /////////////////// Hover /////////////////// ButtonMouseArea { id: interactionMouseArea + z: 3 anchors.fill: parent cursorShape: Qt.PointingHandCursor hoverEnabled: true @@ -162,7 +163,8 @@ Item { radius: root.activeWorkspaceSize / 2 hover: interactionMouseArea.containsMouse press: interactionMouseArea.containsPress - contentColor: Appearance.colors.colPrimary + drag: true // There are too many layers so we need to force this to be a lil more opaque + contentColor: Appearance.colors.colTertiary } } }