summaryrefslogtreecommitdiff
path: root/gui/components/Locations.qml
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2021-09-30 23:37:32 +0200
committerkali kaneko (leap communications) <kali@leap.se>2021-11-23 21:51:11 +0100
commit79d25833bfd261c36d954cf57845e5a416aaf849 (patch)
tree6b24dddc7d396e6a0cc5da3ab098ba459e836a5d /gui/components/Locations.qml
parentd7e65d5cd3ca87b7ebc11cc5f6e9bfd4e9cefbfd (diff)
[ui] size tweaks and new assets
plus work on the systray menu
Diffstat (limited to 'gui/components/Locations.qml')
-rw-r--r--gui/components/Locations.qml13
1 files changed, 9 insertions, 4 deletions
diff --git a/gui/components/Locations.qml b/gui/components/Locations.qml
index ce510c5..600b504 100644
--- a/gui/components/Locations.qml
+++ b/gui/components/Locations.qml
@@ -64,10 +64,13 @@ ThemedPage {
}
WrappedRadioButton {
id: autoRadioButton
- anchors.top: recommendedLabel.bottom
text: getAutoLabel()
ButtonGroup.group: locsel
checked: false
+ anchors {
+ top: recommendedLabel.bottom
+ leftMargin: -5
+ }
onClicked: {
root.selectedGateway = "auto"
console.debug("Selected gateway: auto")
@@ -165,10 +168,12 @@ ThemedPage {
Layout.fillWidth: true
}
Image {
- height: 16
- width: 16
+ height: 30
+ width: 30
+ smooth: true
visible: isBridgeSelected()
- source: "../resources/bridge.png"
+ fillMode: Image.PreserveAspectFit
+ source: "../resources/bridge.svg"
Layout.alignment: Qt.AlignRight
Layout.rightMargin: 10
}