mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: avoid warning before currentTheme is set
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
b4b3864f50
commit
ec7a878149
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ if you have network connectivity and want to sync your data to cloud storage."),
|
||||||
}
|
}
|
||||||
] // end actions
|
] // end actions
|
||||||
Kirigami.Icon {
|
Kirigami.Icon {
|
||||||
source: "icons/" + subsurfaceTheme.currentTheme + "_gps.svg"
|
source: "icons/" + (subsurfaceTheme.currentTheme != "" ? subsurfaceTheme.currentTheme : "Blue") + "_gps.svg"
|
||||||
enabled: false
|
enabled: false
|
||||||
visible: locationServiceEnabled
|
visible: locationServiceEnabled
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue