From 44da20ed4aaca2b63a3dc6c6378f912f91b04bb3 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 28 Oct 2025 09:14:08 +0100 Subject: [PATCH] settings: reorder servicesconfig sections to be alphabetical --- .../ii/modules/settings/ServicesConfig.qml | 56 +++++++++---------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/settings/ServicesConfig.qml b/dots/.config/quickshell/ii/modules/settings/ServicesConfig.qml index 11fc82966..4636d666b 100644 --- a/dots/.config/quickshell/ii/modules/settings/ServicesConfig.qml +++ b/dots/.config/quickshell/ii/modules/settings/ServicesConfig.qml @@ -24,6 +24,34 @@ ContentPage { } } + ContentSection { + icon: "music_cast" + title: Translation.tr("Music Recognition") + + ConfigSpinBox { + icon: "timer_off" + text: Translation.tr("Total duration timeout (s)") + value: Config.options.musicRecognition.timeout + from: 10 + to: 100 + stepSize: 2 + onValueChanged: { + Config.options.musicRecognition.timeout = value; + } + } + ConfigSpinBox { + icon: "av_timer" + text: Translation.tr("Polling interval (s)") + value: Config.options.musicRecognition.interval + from: 2 + to: 10 + stepSize: 1 + onValueChanged: { + Config.options.musicRecognition.interval = value; + } + } + } + ContentSection { icon: "cell_tower" title: Translation.tr("Networking") @@ -57,34 +85,6 @@ ContentPage { } - ContentSection { - icon: "music_cast" - title: Translation.tr("Music Recognition") - - ConfigSpinBox { - icon: "timer_off" - text: Translation.tr("Total duration timeout (s)") - value: Config.options.musicRecognition.timeout - from: 10 - to: 100 - stepSize: 2 - onValueChanged: { - Config.options.musicRecognition.timeout = value; - } - } - ConfigSpinBox { - icon: "av_timer" - text: Translation.tr("Polling interval (s)") - value: Config.options.musicRecognition.interval - from: 2 - to: 10 - stepSize: 1 - onValueChanged: { - Config.options.musicRecognition.interval = value; - } - } - } - ContentSection { icon: "search" title: Translation.tr("Search")