v1.6.0: arrow at 90%, euro+arrow bottom-aligned with the price, bitcoin icon at 110%

This commit is contained in:
ArnoldCordewiner
2026-09-05 22:05:08 +02:00
parent e4e848540c
commit 6e9b94217e
5 changed files with 21 additions and 19 deletions
+4 -4
View File
@@ -127,8 +127,8 @@ Item {
Image {
id: btcIcon
source: "../images/bitcoin.svg"
sourceSize.width: PlasmaCore.Units.iconSizes.smallMedium
sourceSize.height: PlasmaCore.Units.iconSizes.smallMedium
sourceSize.width: Math.round(PlasmaCore.Units.iconSizes.smallMedium * 1.1)
sourceSize.height: Math.round(PlasmaCore.Units.iconSizes.smallMedium * 1.1)
anchors.verticalCenter: parent.verticalCenter
fillMode: Image.PreserveAspectFit
visible: root.state === "ok"
@@ -174,8 +174,8 @@ Item {
Image {
anchors.horizontalCenter: parent.horizontalCenter
source: "../images/bitcoin.svg"
sourceSize.width: PlasmaCore.Units.iconSizes.large
sourceSize.height: PlasmaCore.Units.iconSizes.large
sourceSize.width: Math.round(PlasmaCore.Units.iconSizes.large * 1.1)
sourceSize.height: Math.round(PlasmaCore.Units.iconSizes.large * 1.1)
fillMode: Image.PreserveAspectFit
visible: root.state === "ok"
}