settings: move weather

This commit is contained in:
end-4
2025-07-06 09:05:23 +02:00
parent e06ab94fb6
commit 7bcb01964f
2 changed files with 11 additions and 11 deletions
@@ -212,6 +212,17 @@ ContentPage {
} }
} }
} }
ContentSubsection {
title: "Weather"
ConfigSwitch {
text: "Enable"
checked: Config.options.bar.weather.enable
onCheckedChanged: {
Config.options.bar.weather.enable = checked;
}
}
}
} }
ContentSection { ContentSection {
@@ -137,15 +137,4 @@ ContentPage {
} }
} }
} }
ContentSection {
title: "Weather"
ConfigSwitch {
text: "enable"
checked: Config.options.bar.weather.enable
onCheckedChanged: {
Config.options.bar.weather.enable = checked;
}
}
}
} }