diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-05-14 16:03:22 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-05-14 16:03:22 -0500 |
| commit | 80e8dd6aefa26428bbead9a95443886600609d31 (patch) | |
| tree | f8a2d05a537dd4976157be85a5b36f5e2a76efd3 | |
| parent | c82bd94bc39b854ebe3ceecb008e9ce1d567dce2 (diff) | |
| parent | 72a3b346bbf9b61727c80e7f63f8498626654039 (diff) | |
| download | monzero-gui-80e8dd6aefa26428bbead9a95443886600609d31.tar.gz monzero-gui-80e8dd6aefa26428bbead9a95443886600609d31.tar.xz monzero-gui-80e8dd6aefa26428bbead9a95443886600609d31.zip | |
Merge pull request #2901
72a3b34 Merchant: allow to exit when height < minHeight (selsta)
| -rw-r--r-- | pages/merchant/Merchant.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pages/merchant/Merchant.qml b/pages/merchant/Merchant.qml index 7ed4cdc3..52045999 100644 --- a/pages/merchant/Merchant.qml +++ b/pages/merchant/Merchant.qml @@ -574,6 +574,13 @@ Item { text: qsTr("The merchant page requires a larger window") + translationManager.emptyString themeTransition: false } + + MouseArea { + anchors.fill: parent + hoverEnabled: true + cursorShape: Qt.PointingHandCursor + onClicked: appWindow.showPageRequest("Settings") + } } function update() { |
