diff --git a/flake.lock b/flake.lock index fd6e900..3954010 100644 --- a/flake.lock +++ b/flake.lock @@ -1603,11 +1603,11 @@ ] }, "locked": { - "lastModified": 1771887671, - "narHash": "sha256-eIzmR3N5QnR5lcBT3N58v49ggl9MzUYSRgQznex1ayM=", + "lastModified": 1772710235, + "narHash": "sha256-QJgetqq0PWKbQXuMw8Z+SHqyk+40P3830lUhgVVL4Kc=", "owner": "logos-co", "repo": "logos-package", - "rev": "d9a741359b17b928afae59cf3c6ee00057b7d93e", + "rev": "02fae070cc5e404f6447cc57760b748d246357ab", "type": "github" }, "original": { @@ -1819,11 +1819,11 @@ "nixpkgs": "nixpkgs_45" }, "locked": { - "lastModified": 1772471819, - "narHash": "sha256-9Ce1/XdtOhOYHZuAtOwMtHVSys3dnkIOd4nnXIHKe9M=", + "lastModified": 1772710643, + "narHash": "sha256-PP/gXPF5oomX1Up8QHWiVhCdTw8QF9he2FnzugcjDFE=", "owner": "logos-co", "repo": "nix-bundle-lgx", - "rev": "63a176612549a63baab146a4e0c7f1c713b5e972", + "rev": "6c29284f49f2d11df8d4ccb369bcd4d05a22ffb7", "type": "github" }, "original": { @@ -2458,11 +2458,11 @@ }, "nixpkgs_45": { "locked": { - "lastModified": 1771848320, - "narHash": "sha256-0MAd+0mun3K/Ns8JATeHT1sX28faLII5hVLq0L3BdZU=", + "lastModified": 1772542754, + "narHash": "sha256-WGV2hy+VIeQsYXpsLjdr4GvHv5eECMISX1zKLTedhdg=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "2fc6539b481e1d2569f25f8799236694180c0993", + "rev": "8c809a146a140c5c8806f13399592dbcb1bb5dc4", "type": "github" }, "original": { diff --git a/src/qml/controls/LogosCopyButton.qml b/src/qml/controls/LogosCopyButton.qml index 233905b..7e11cb4 100644 --- a/src/qml/controls/LogosCopyButton.qml +++ b/src/qml/controls/LogosCopyButton.qml @@ -1,6 +1,8 @@ import QtQuick import QtQuick.Controls +import Logos.Theme + Button { id: root @@ -16,6 +18,7 @@ Button { icon.source: root.iconSource icon.width: 24 icon.height: 24 + icon.color: Theme.palette.textSecondary function reset() { iconSource = "qrc:/lezwallet/icons/copy.svg" diff --git a/src/qml/views/TransferPanel.qml b/src/qml/views/TransferPanel.qml index 91fcdd8..6591d51 100644 --- a/src/qml/views/TransferPanel.qml +++ b/src/qml/views/TransferPanel.qml @@ -111,7 +111,8 @@ Rectangle { } contentItem: Item { - implicitWidth: fromCombo.width - indicatorText.width - 12 + implicitWidth: 120 + width: fromCombo.width - indicatorText.width - 12 TextInput { id: fromComboContentInput anchors.fill: parent