1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-02 03:28:28 -04:00

greeter: fix weather location sync

fixes #2303
This commit is contained in:
bbedward
2026-07-04 13:06:49 -04:00
parent 25a1b125b7
commit e7bd8e4002
2 changed files with 6 additions and 4 deletions
@@ -565,6 +565,7 @@ Item {
if (text && longitudeInput.text) {
const coords = text + "," + longitudeInput.text;
SessionData.weatherCoordinates = coords;
SessionData.weatherLocation = "";
SessionData.saveSettings();
}
}
@@ -615,6 +616,7 @@ Item {
if (text && latitudeInput.text) {
const coords = latitudeInput.text + "," + text;
SessionData.weatherCoordinates = coords;
SessionData.weatherLocation = "";
SessionData.saveSettings();
}
}