summaryrefslogtreecommitdiff
path: root/modules/controlcenter/launcher/Settings.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/controlcenter/launcher/Settings.qml')
-rw-r--r--modules/controlcenter/launcher/Settings.qml33
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 {