From 9e89bd4f1a6ce297581a932d122dc0c021a85f31 Mon Sep 17 00:00:00 2001 From: Khushboo Mehta Date: Thu, 10 Aug 2023 12:28:42 +0200 Subject: [PATCH] fix(@desktop/wallet): Wallet -> Main screen: + button is overlapped fixes #11845 --- ui/app/AppLayouts/Wallet/views/LeftTabView.qml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ui/app/AppLayouts/Wallet/views/LeftTabView.qml b/ui/app/AppLayouts/Wallet/views/LeftTabView.qml index d3fa2008fe..90a14d3bf3 100644 --- a/ui/app/AppLayouts/Wallet/views/LeftTabView.qml +++ b/ui/app/AppLayouts/Wallet/views/LeftTabView.qml @@ -182,7 +182,7 @@ Rectangle { Item { Layout.fillWidth: true - Layout.preferredHeight: walletTitleText.height + Layout.preferredHeight: icon.height Layout.leftMargin: Style.current.padding Layout.rightMargin: Style.current.padding Layout.topMargin: Style.current.padding @@ -199,16 +199,18 @@ Rectangle { font.weight: Font.Bold font.pixelSize: 17 color: Theme.palette.directColor1 + anchors.verticalCenter: parent.verticalCenter } StatusRoundButton { + id: icon objectName: "addAccountButton" icon.name: "add-circle" anchors.right: parent.right anchors.rightMargin: -Style.current.smallPadding anchors.verticalCenter: parent.verticalCenter - width: height - height: parent.height * 2 + icon.width: 24 + icon.height: 24 color: hovered || highlighted ? Theme.palette.primaryColor3 : "transparent" onClicked: RootStore.runAddAccountPopup()