From 48c8fc37f9716e05f6890ab8379b95bf7e3df717 Mon Sep 17 00:00:00 2001 From: Khushboo Mehta Date: Thu, 5 Mar 2026 11:28:45 +0000 Subject: [PATCH] fix: icon colors --- src/qml/controls/AccountDelegate.qml | 1 + src/qml/controls/LogosCopyButton.qml | 1 + 2 files changed, 2 insertions(+) diff --git a/src/qml/controls/AccountDelegate.qml b/src/qml/controls/AccountDelegate.qml index f583b5d..64cfbfd 100644 --- a/src/qml/controls/AccountDelegate.qml +++ b/src/qml/controls/AccountDelegate.qml @@ -51,6 +51,7 @@ ItemDelegate { display: AbstractButton.IconOnly flat: true icon.source: "qrc:/icons/refresh.svg" + icon.color: Theme.palette.textSecondary font.pixelSize: Theme.typography.secondaryText padding: 4 onClicked: root.getBalanceRequested(model.address || "") diff --git a/src/qml/controls/LogosCopyButton.qml b/src/qml/controls/LogosCopyButton.qml index 034c5dc..3a29cb5 100644 --- a/src/qml/controls/LogosCopyButton.qml +++ b/src/qml/controls/LogosCopyButton.qml @@ -16,6 +16,7 @@ Button { icon.source: root.iconSource icon.width: 24 icon.height: 24 + icon.color: Theme.palette.textSecondary function reset() { iconSource = "qrc:/icons/copy.svg"