diff options
author | kali <kali@leap.se> | 2021-10-04 12:59:01 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-11-23 21:51:17 +0100 |
commit | 7691f0f2967f721f3dee100956982ff625d7d945 (patch) | |
tree | 446fb202fd11a2802fd67e7b2df3050995c9f618 /gui/components/Locations.qml | |
parent | f3ed99f26f6f6a7d2b3d7da47409b28b2e042c05 (diff) |
[ui] workarounds for font in osx
Diffstat (limited to 'gui/components/Locations.qml')
-rw-r--r-- | gui/components/Locations.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/components/Locations.qml b/gui/components/Locations.qml index a93700a..097f9fe 100644 --- a/gui/components/Locations.qml +++ b/gui/components/Locations.qml @@ -60,6 +60,7 @@ ThemedPage { id: recommendedLabel //: Location Selection: label for radio button that selects automatically text: qsTr("Recommended") + font.weight: Font.Bold font.bold: true } WrappedRadioButton { @@ -203,7 +204,7 @@ ThemedPage { } }, State { - when: ctx && ctx.status == "on" + when: ctx != undefined && ctx.status == "on" PropertyChanges { target: manualLabel text: manualSelectionLabel |