qml: fix a few texts that should wrap
This commit is contained in:
@@ -65,7 +65,7 @@ WizardComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
Layout.preferredWidth: parent.width
|
Layout.fillWidth: true
|
||||||
Layout.preferredHeight: 1
|
Layout.preferredHeight: 1
|
||||||
Layout.topMargin: constants.paddingLarge
|
Layout.topMargin: constants.paddingLarge
|
||||||
Layout.bottomMargin: constants.paddingLarge
|
Layout.bottomMargin: constants.paddingLarge
|
||||||
@@ -74,7 +74,9 @@ WizardComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
|
Layout.fillWidth: true
|
||||||
text: qsTr('Add cosigner #%1 of %2 to your multi-sig wallet').arg(cosigner).arg(participants)
|
text: qsTr('Add cosigner #%1 of %2 to your multi-sig wallet').arg(cosigner).arg(participants)
|
||||||
|
wrapMode: Text.Wrap
|
||||||
}
|
}
|
||||||
RadioButton {
|
RadioButton {
|
||||||
ButtonGroup.group: keystoregroup
|
ButtonGroup.group: keystoregroup
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ WizardComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
Layout.preferredWidth: parent.width
|
Layout.fillWidth: true
|
||||||
Layout.preferredHeight: 1
|
Layout.preferredHeight: 1
|
||||||
Layout.topMargin: constants.paddingLarge
|
Layout.topMargin: constants.paddingLarge
|
||||||
Layout.bottomMargin: constants.paddingLarge
|
Layout.bottomMargin: constants.paddingLarge
|
||||||
@@ -103,9 +103,11 @@ WizardComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
|
Layout.fillWidth: true
|
||||||
text: cosigner
|
text: cosigner
|
||||||
? qsTr('Enter cosigner master public key')
|
? qsTr('Enter cosigner master public key')
|
||||||
: qsTr('Create keystore from a master key')
|
: qsTr('Create keystore from a master key')
|
||||||
|
wrapMode: Text.Wrap
|
||||||
}
|
}
|
||||||
|
|
||||||
RowLayout {
|
RowLayout {
|
||||||
|
|||||||
Reference in New Issue
Block a user