fix(ServiceConfig): add weatherbar section

This commit is contained in:
Hasan A. Tekeoğlu
2025-07-01 05:42:50 +03:00
parent fd873ff7c1
commit 67c75b1cce
@@ -138,16 +138,13 @@ ContentPage {
} }
} }
ContentSubsection { ContentSection {
title: "Weather" title: "Weather"
ConfigRow {
uniform: false
ConfigSwitch { ConfigSwitch {
text: "Show" text: "Show"
checked: ConfigOptions.bar.weather.show checked: Config.options.bar.weather.show
onCheckedChanged: { onCheckedChanged: {
ConfigLoader.setConfigValueAndSave("bar.weather.show", checked); Config.options.bar.weather.show = checked;
}
} }
} }
} }