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