From 41a9577201c0011344171456254af4464013e3c3 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Wed, 12 Jan 2022 06:44:51 +0100 Subject: Fix device verification colors --- resources/qml/device-verification/Waiting.qml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'resources/qml/device-verification/Waiting.qml') diff --git a/resources/qml/device-verification/Waiting.qml b/resources/qml/device-verification/Waiting.qml index 4584a202..e75a97ce 100644 --- a/resources/qml/device-verification/Waiting.qml +++ b/resources/qml/device-verification/Waiting.qml @@ -11,15 +11,18 @@ import im.nheko 1.0 Pane { property string title: qsTr("Waiting for other party…") + 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: { @@ -36,10 +39,12 @@ Pane { verticalAlignment: Text.AlignVCenter } + Item { Layout.fillHeight: true; } Spinner { Layout.alignment: Qt.AlignHCenter foreground: Nheko.colors.mid } + Item { Layout.fillHeight: true; } RowLayout { Button { -- cgit 1.5.1