diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-08 17:00:30 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-01-08 17:00:30 -0500 |
| commit | 1e258986aedae45f6046731840a38613997861a8 (patch) | |
| tree | 97bc34be43c96ddf3251ad98f0bab7ec664dab28 /modules/controlcenter/launcher | |
| parent | remove pfp (diff) | |
| download | caelestia-shell-1e258986aedae45f6046731840a38613997861a8.tar.gz caelestia-shell-1e258986aedae45f6046731840a38613997861a8.tar.bz2 caelestia-shell-1e258986aedae45f6046731840a38613997861a8.zip | |
hardcode single wallpaper
Diffstat (limited to 'modules/controlcenter/launcher')
| -rw-r--r-- | modules/controlcenter/launcher/Settings.qml | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/modules/controlcenter/launcher/Settings.qml b/modules/controlcenter/launcher/Settings.qml index 0b842e9..7ab1d46 100644 --- a/modules/controlcenter/launcher/Settings.qml +++ b/modules/controlcenter/launcher/Settings.qml @@ -73,12 +73,6 @@ ColumnLayout { PropertyRow { showTopMargin: true - label: qsTr("Max wallpapers") - value: qsTr("%1").arg(Config.launcher.maxWallpapers) - } - - PropertyRow { - showTopMargin: true label: qsTr("Drag threshold") value: qsTr("%1 px").arg(Config.launcher.dragThreshold) } @@ -120,33 +114,6 @@ ColumnLayout { Config.save(); } } - - ToggleRow { - label: qsTr("Schemes") - checked: Config.launcher.useFuzzy.schemes - toggle.onToggled: { - Config.launcher.useFuzzy.schemes = checked; - Config.save(); - } - } - - ToggleRow { - label: qsTr("Variants") - checked: Config.launcher.useFuzzy.variants - toggle.onToggled: { - Config.launcher.useFuzzy.variants = checked; - Config.save(); - } - } - - ToggleRow { - label: qsTr("Wallpapers") - checked: Config.launcher.useFuzzy.wallpapers - toggle.onToggled: { - Config.launcher.useFuzzy.wallpapers = checked; - Config.save(); - } - } } SectionHeader { |