Actually fix workspaces, fix dim panel

This commit is contained in:
Ly-sec 2025-07-27 13:53:00 +02:00
parent 4f5e18bd69
commit df1e6e6bbe
3 changed files with 5 additions and 6 deletions

View file

@ -188,7 +188,7 @@ Item {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: {
WorkspaceManager.switchToWorkspace(model.idx);
WorkspaceManager.switchToWorkspace(model.id);
}
z: 20
hoverEnabled: true

View file

@ -23,6 +23,6 @@
"onAccent": "#0E0F10",
"outline": "#565758",
"shadow": "#B30E0F10",
"overlay": "#660E0F10"
"shadow": "#0E0F10",
"overlay": "#0E0F10"
}

View file

@ -97,8 +97,8 @@ Singleton {
property color outline: themeData.outline
// Shadows & Overlays
property color shadow: themeData.shadow
property color overlay: themeData.overlay
property color shadow: applyOpacity(themeData.shadow, "B3")
property color overlay: applyOpacity(themeData.overlay, "66")
// Font Properties
property string fontFamily: "Roboto" // Family for all text
@ -108,4 +108,3 @@ Singleton {
property int fontSizeSmall: 14 // Small text like clock, labels
property int fontSizeCaption: 12 // Captions and fine print
}