diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-31 22:03:58 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-31 22:03:58 +1000 |
| commit | 7729546469a0f8517d639a9bc98554bd7ec13332 (patch) | |
| tree | c49bcdea57d211b14b43f9a3cfe706dc24ebae9a /modules | |
| parent | plugin/cim: check if cache is valid image (diff) | |
| download | caelestia-shell-7729546469a0f8517d639a9bc98554bd7ec13332.tar.gz caelestia-shell-7729546469a0f8517d639a9bc98554bd7ec13332.tar.bz2 caelestia-shell-7729546469a0f8517d639a9bc98554bd7ec13332.zip | |
plugin: add FileSystemModel
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/launcher/items/WallpaperItem.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/launcher/items/WallpaperItem.qml b/modules/launcher/items/WallpaperItem.qml index 5a4cc67..0b8f03a 100644 --- a/modules/launcher/items/WallpaperItem.qml +++ b/modules/launcher/items/WallpaperItem.qml @@ -3,6 +3,7 @@ import qs.components.effects import qs.components.images import qs.services import qs.config +import Caelestia import Quickshell import Quickshell.Widgets import QtQuick @@ -10,7 +11,7 @@ import QtQuick StyledRect { id: root - required property Wallpapers.Wallpaper modelData + required property FileSystemEntry modelData required property PersistentProperties visibilities scale: 0.5 @@ -75,7 +76,7 @@ StyledRect { horizontalAlignment: Text.AlignHCenter elide: Text.ElideRight renderType: Text.QtRendering - text: root.modelData.name + text: root.modelData.relativePath font.pointSize: Appearance.font.size.normal } |