diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-14 16:25:46 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-14 16:25:46 +1000 |
| commit | 04ce9ccbb4a1b4ee8ee1850f90af886412852b9f (patch) | |
| tree | aa2ebf44dc59b5bb56c6c0fd9557f7e82e71d1d4 /modules/dashboard/dash | |
| parent | nix: extend `hm-module` for CLI config options and add `extraRuntimeDeps` to ... (diff) | |
| download | caelestia-shell-04ce9ccbb4a1b4ee8ee1850f90af886412852b9f.tar.gz caelestia-shell-04ce9ccbb4a1b4ee8ee1850f90af886412852b9f.tar.bz2 caelestia-shell-04ce9ccbb4a1b4ee8ee1850f90af886412852b9f.zip | |
internal: better colourisation
Diffstat (limited to 'modules/dashboard/dash')
| -rw-r--r-- | modules/dashboard/dash/User.qml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/modules/dashboard/dash/User.qml b/modules/dashboard/dash/User.qml index e45153e..ffdc72a 100644 --- a/modules/dashboard/dash/User.qml +++ b/modules/dashboard/dash/User.qml @@ -5,7 +5,6 @@ import qs.services import qs.config import qs.utils import Quickshell -import Quickshell.Widgets import QtQuick Row { @@ -119,7 +118,7 @@ Row { implicitWidth: icon.implicitWidth + text.width + text.anchors.leftMargin implicitHeight: Math.max(icon.implicitHeight, text.implicitHeight) - IconImage { + ColouredIcon { id: icon anchors.left: parent.left @@ -127,11 +126,7 @@ Row { source: SysInfo.osLogo implicitSize: Math.floor(Appearance.font.size.normal * 1.34) - - layer.enabled: true - layer.effect: Colouriser { - colorizationColor: Colours.palette.m3primary - } + colour: Colours.palette.m3primary } StyledText { |