From de6a9b6779f7d9ff2bb1eac93eea91adf271dd30 Mon Sep 17 00:00:00 2001 From: rating89us <45968869+rating89us@users.noreply.github.com> Date: Tue, 14 Apr 2020 20:47:00 +0200 Subject: Transfer: address book inline button, 2nd inline button, scan QR code button fixes spacing fix --- components/InlineButton.qml | 1 + components/LineEditMulti.qml | 9 +++++++++ 2 files changed, 10 insertions(+) (limited to 'components') diff --git a/components/InlineButton.qml b/components/InlineButton.qml index 402dade2..299f1ae6 100644 --- a/components/InlineButton.qml +++ b/components/InlineButton.qml @@ -53,6 +53,7 @@ Item { property alias fontPixelSize: inlineText.font.pixelSize property alias fontFamily: inlineText.font.family property alias buttonColor: rect.color + property alias buttonHeight: rect.height signal clicked() function doClick() { diff --git a/components/LineEditMulti.qml b/components/LineEditMulti.qml index 46052495..179d0438 100644 --- a/components/LineEditMulti.qml +++ b/components/LineEditMulti.qml @@ -87,6 +87,8 @@ ColumnLayout { property alias inlineButton: inlineButtonId property bool inlineButtonVisible: false + property alias inlineButton2: inlineButton2Id + property bool inlineButton2Visible: false signal labelButtonClicked(); signal inputLabelLinkActivated(); @@ -202,5 +204,12 @@ ColumnLayout { anchors.right: parent.right anchors.rightMargin: 8 } + + MoneroComponents.InlineButton { + id: inlineButton2Id + visible: (inlineButton2Id.text || inlineButton2Id.icon) && inlineButton2Visible ? true : false + anchors.right: parent.right + anchors.rightMargin: inlineButtonVisible ? 48 : 8 + } } } -- cgit v1.2.3