From 51820b2a880ac6d018d0f03675d5aa30d6334bc1 Mon Sep 17 00:00:00 2001 From: "kali kaneko (leap communications)" Date: Tue, 30 Nov 2021 22:05:39 +0100 Subject: [ui] tweak signal icon nodes --- gui/components/Footer.qml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'gui/components') 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 } } } -- cgit v1.2.3