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 { ConfigSwitch {
uniform: false text: "Show"
ConfigSwitch { checked: Config.options.bar.weather.show
text: "Show" onCheckedChanged: {
checked: ConfigOptions.bar.weather.show Config.options.bar.weather.show = checked;
onCheckedChanged: {
ConfigLoader.setConfigValueAndSave("bar.weather.show", checked);
}
} }
} }
} }