diff --git a/electrum/gui/icons/question.png b/electrum/gui/icons/question.png new file mode 100644 index 000000000..23b572bed Binary files /dev/null and b/electrum/gui/icons/question.png differ diff --git a/electrum/gui/qml/components/MessageDialog.qml b/electrum/gui/qml/components/MessageDialog.qml index e59d33fbc..2c433e335 100644 --- a/electrum/gui/qml/components/MessageDialog.qml +++ b/electrum/gui/qml/components/MessageDialog.qml @@ -8,6 +8,9 @@ import "controls" ElDialog { id: dialog title: qsTr("Message") + iconSource: yesno + ? Qt.resolvedUrl('../../icons/question.png') + : Qt.resolvedUrl('../../icons/info.png') property bool yesno: false property alias text: message.text diff --git a/electrum/gui/qml/components/Preferences.qml b/electrum/gui/qml/components/Preferences.qml index 742436398..63d31a587 100644 --- a/electrum/gui/qml/components/Preferences.qml +++ b/electrum/gui/qml/components/Preferences.qml @@ -245,10 +245,6 @@ Pane { text: qsTr('Lightning') } - Label { - text: qsTr('Lightning Routing') - } - RowLayout { Layout.columnSpan: 2 Layout.fillWidth: true @@ -260,7 +256,7 @@ Pane { if (activeFocus) { if (!checked) { var dialog = app.messageDialog.createObject(app, { - text: qsTr('Using plain gossip mode is not recommended. Are you sure?'), + text: qsTr('Using plain gossip mode is not recommended on mobile. Are you sure?'), yesno: true }) dialog.yesClicked.connect(function() {