diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-17 22:44:29 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-17 22:44:29 +1000 |
| commit | e373fe0375a45aa2825e28c7326bed1a3cd97c65 (patch) | |
| tree | c410f04b6b7616a0f954850ff234e8fcc4b41a15 /services/Colours.qml | |
| parent | popouts: fix activewindow screencopy (diff) | |
| download | caelestia-shell-e373fe0375a45aa2825e28c7326bed1a3cd97c65.tar.gz caelestia-shell-e373fe0375a45aa2825e28c7326bed1a3cd97c65.tar.bz2 caelestia-shell-e373fe0375a45aa2825e28c7326bed1a3cd97c65.zip | |
launcher: fix wallpaper preview colours
Also disable transparency action (not impled and won't be in the near future)
Diffstat (limited to 'services/Colours.qml')
| -rw-r--r-- | services/Colours.qml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/services/Colours.qml b/services/Colours.qml index 20fb6aa..53ca90e 100644 --- a/services/Colours.qml +++ b/services/Colours.qml @@ -12,7 +12,6 @@ Singleton { readonly property list<string> colourNames: ["rosewater", "flamingo", "pink", "mauve", "red", "maroon", "peach", "yellow", "green", "teal", "sky", "sapphire", "blue", "lavender"] property bool showPreview - property bool endPreviewOnNextChange property bool light readonly property Colours palette: showPreview ? preview : current readonly property Colours current: Colours {} @@ -45,11 +44,6 @@ Singleton { if (colours.hasOwnProperty(propName)) colours[propName] = `#${colour}`; } - - if (!isPreview || (isPreview && endPreviewOnNextChange)) { - showPreview = false; - endPreviewOnNextChange = false; - } } function setMode(mode: string): void { |