settings: add toggle for wallpaper selector use system file picker

This commit is contained in:
end-4
2025-10-15 19:27:14 +02:00
parent 3f7d6759c1
commit 13065d7e5a
@@ -770,4 +770,18 @@ ContentPage {
}
}
}
ContentSection {
icon: "wallpaper_slideshow"
title: Translation.tr("Wallpaper selector")
ConfigSwitch {
buttonIcon: "ad"
text: Translation.tr('Use system file picker')
checked: Config.options.wallpaperSelector.useSystemFileDialog
onCheckedChanged: {
Config.options.wallpaperSelector.useSystemFileDialog = checked;
}
}
}
}