summaryrefslogtreecommitdiff
path: root/gui/components
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2021-11-30 22:05:39 +0100
committerkali kaneko (leap communications) <kali@leap.se>2021-11-30 22:05:39 +0100
commit51820b2a880ac6d018d0f03675d5aa30d6334bc1 (patch)
treee3bb1e1b10c5f43679f36c642fc68213d4b13a75 /gui/components
parent1fb9c722ae69febcda5de86c91adf43a04f1de85 (diff)
[ui] tweak signal icon nodes
Diffstat (limited to 'gui/components')
-rw-r--r--gui/components/Footer.qml14
1 files changed, 9 insertions, 5 deletions
diff --git a/gui/components/Footer.qml b/gui/components/Footer.qml
index 516d837..0c772ef 100644
--- a/gui/components/Footer.qml
+++ b/gui/components/Footer.qml
@@ -96,12 +96,17 @@ ToolBar {
}
}
+ // TODO refactor with SignalIcon
+ // This signal image renders particularly bad at this size.
+ // https://stackoverflow.com/a/23449205/1157664
Image {
id: gwQuality
- height: 24
- width: 24
- smooth: true
source: "../resources/reception-0@24.svg"
+ width: 24
+ sourceSize.width: 24
+ smooth: false
+ mipmap: true
+ antialiasing: false
anchors {
right: parent.right
verticalCenter: parent.verticalCenter
@@ -109,12 +114,11 @@ ToolBar {
topMargin: 5
rightMargin: 20
}
- // TODO refactor with SignalIcon
ColorOverlay{
anchors.fill: gwQuality
source: gwQuality
color: getSignalColor()
- antialiasing: true
+ antialiasing: false
}
}
}