From 6bec49856084e6fc5270938ceea26dfce89fee82 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 30 Mar 2023 12:26:35 +0200 Subject: [PATCH] qml: use the same button for copy and paste --- electrum/gui/qml/components/SendDialog.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/qml/components/SendDialog.qml b/electrum/gui/qml/components/SendDialog.qml index 49ee44afa..75001f99b 100644 --- a/electrum/gui/qml/components/SendDialog.qml +++ b/electrum/gui/qml/components/SendDialog.qml @@ -63,8 +63,8 @@ ElDialog { FlatButton { Layout.fillWidth: true Layout.preferredWidth: 1 - icon.source: '../../icons/paste.png' - text: qsTr('Paste from clipboard') + icon.source: '../../icons/copy_bw.png' + text: qsTr('Paste') onClicked: dialog.dispatch(AppController.clipboardToText()) } }