File tree Expand file tree Collapse file tree 2 files changed +28
-5
lines changed Expand file tree Collapse file tree 2 files changed +28
-5
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,36 @@ OptionPopup {
13
13
id: root
14
14
15
15
property alias coinControlEnabled: coinControlToggle .checked
16
+ property alias multipleRecipientsEnabled: multipleRecipientsToggle .checked
17
+
18
+ implicitWidth: 300
19
+ implicitHeight: 100
16
20
17
21
clip: true
18
22
modal: true
19
23
dim: false
20
24
21
- EllipsisMenuToggleItem {
22
- id: coinControlToggle
25
+ ColumnLayout {
26
+ id: columnLayout
23
27
anchors .centerIn : parent
24
- text: qsTr (" Enable Coin control" )
28
+ anchors .margins : 10
29
+ spacing: 0
30
+
31
+ EllipsisMenuToggleItem {
32
+ id: coinControlToggle
33
+ Layout .fillWidth : true
34
+ text: qsTr (" Enable Coin control" )
35
+ }
36
+
37
+ Separator {
38
+ id: separator
39
+ Layout .fillWidth : true
40
+ }
41
+
42
+ EllipsisMenuToggleItem {
43
+ id: multipleRecipientsToggle
44
+ Layout .fillWidth : true
45
+ text: qsTr (" Multiple Recipients" )
46
+ }
25
47
}
26
48
}
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ PageStack {
33
33
Settings {
34
34
id: settings
35
35
property alias coinControlEnabled: sendOptionsPopup .coinControlEnabled
36
+ property alias multipleRecipientsEnabled: sendOptionsPopup .multipleRecipientsEnabled
36
37
}
37
38
38
39
ScrollView {
@@ -55,6 +56,7 @@ PageStack {
55
56
Layout .fillWidth : true
56
57
Layout .topMargin : 30
57
58
Layout .bottomMargin : 20
59
+
58
60
CoreText {
59
61
id: title
60
62
anchors .left : parent .left
@@ -64,6 +66,7 @@ PageStack {
64
66
color: Theme .color .neutral9
65
67
bold: true
66
68
}
69
+
67
70
EllipsisMenuButton {
68
71
id: menuButton
69
72
anchors .right : parent .right
@@ -78,8 +81,6 @@ PageStack {
78
81
id: sendOptionsPopup
79
82
x: menuButton .x - width + menuButton .width
80
83
y: menuButton .y + menuButton .height
81
- width: 300
82
- height: 50
83
84
}
84
85
}
85
86
You can’t perform that action at this time.
0 commit comments