1 files changed, 7 insertions, 2 deletions
diff --git a/resources/qml/device-verification/Success.qml b/resources/qml/device-verification/Success.qml
index c74f0ea8..8d7c8419 100644
--- a/resources/qml/device-verification/Success.qml
+++ b/resources/qml/device-verification/Success.qml
@@ -10,15 +10,18 @@ import im.nheko 1.0
Pane {
property string title: qsTr("Successful Verification")
+ background: Rectangle {
+ color: Nheko.colors.window
+ }
ColumnLayout {
+ anchors.fill: parent
spacing: 16
Label {
id: content
- Layout.maximumWidth: 400
- Layout.fillHeight: true
+ Layout.preferredWidth: 400
Layout.fillWidth: true
wrapMode: Text.Wrap
text: qsTr("Verification successful! Both sides verified their devices!")
@@ -26,6 +29,8 @@ Pane {
verticalAlignment: Text.AlignVCenter
}
+ Item { Layout.fillHeight: true; }
+
RowLayout {
Item {
Layout.fillWidth: true
|