aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pages/Receive.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/pages/Receive.qml b/pages/Receive.qml
index 9ab742c9..f5cac4a9 100644
--- a/pages/Receive.qml
+++ b/pages/Receive.qml
@@ -48,6 +48,7 @@ Rectangle {
property var model
property var current_address
property int current_subaddress_table_index: 0
+ property bool advancedRowVisible: false
property alias receiveHeight: mainLayout.height
property alias addressText : pageReceive.current_address
@@ -398,10 +399,23 @@ Rectangle {
}
}
+ RowLayout {
+ CheckBox2 {
+ id: showAdvancedCheckbox
+ checked: false
+ onClicked: {
+ advancedRowVisible = !advancedRowVisible;
+ }
+ text: qsTr("Advanced options") + translationManager.emptyString
+ }
+ }
+
GridLayout {
+ id: advancedRow
columns: (isMobile)? 1 : 2
Layout.fillWidth: true
columnSpacing: 32 * scaleRatio
+ visible: advancedRowVisible
ColumnLayout {
Layout.alignment: Qt.AlignTop