diff options
author | 0xDEADCADE <69792955+0xDEADCADE@users.noreply.github.com> | 2023-03-21 15:02:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-21 15:02:13 +0000 |
commit | ac842845bd2f8aca4792af57812411cf5420409c (patch) | |
tree | 52a6041aee3388ae95e9b0bfa5daab5fb527a174 /resources/qml/device-verification/DeviceVerification.qml | |
parent | All around me are empty spaces (diff) | |
download | nheko-ac842845bd2f8aca4792af57812411cf5420409c.tar.xz |
Add width to device verification window
Fixes the device verification window being 0 or 1 pixels wide on some tiling window managers.
Diffstat (limited to '')
-rw-r--r-- | resources/qml/device-verification/DeviceVerification.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/resources/qml/device-verification/DeviceVerification.qml b/resources/qml/device-verification/DeviceVerification.qml index 6865cc89..d44fd9cf 100644 --- a/resources/qml/device-verification/DeviceVerification.qml +++ b/resources/qml/device-verification/DeviceVerification.qml @@ -21,6 +21,7 @@ ApplicationWindow { minimumHeight: stack.currentItem.implicitHeight + 2 * Nheko.paddingLarge height: stack.currentItem.implicitHeight + 2 * Nheko.paddingMedium minimumWidth: 400 + width: 400 flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint background: Rectangle { |