1 files changed, 7 insertions, 2 deletions
diff --git a/resources/qml/device-verification/NewVerificationRequest.qml b/resources/qml/device-verification/NewVerificationRequest.qml
index 7facb725..b7ed9586 100644
--- a/resources/qml/device-verification/NewVerificationRequest.qml
+++ b/resources/qml/device-verification/NewVerificationRequest.qml
@@ -10,15 +10,18 @@ import im.nheko 1.0
Pane {
property string title: flow.sender ? qsTr("Send Verification Request") : qsTr("Received Verification Request")
+ background: Rectangle {
+ color: Nheko.colors.window
+ }
ColumnLayout {
+ anchors.fill: parent
spacing: 16
Label {
// Self verification
- Layout.maximumWidth: 400
- Layout.fillHeight: true
+ Layout.preferredWidth: 400
Layout.fillWidth: true
wrapMode: Text.Wrap
text: {
@@ -43,6 +46,8 @@ Pane {
verticalAlignment: Text.AlignVCenter
}
+ Item { Layout.fillHeight: true; }
+
RowLayout {
Button {
Layout.alignment: Qt.AlignLeft
|