1
0
mirror of https://github.com/chylex/Nextcloud-Desktop.git synced 2025-04-13 04:15:43 +02:00

Merge pull request from nextcloud/bugfix/user-status-selector-dialog-resize

Set dialog max and min width and height before width and height
This commit is contained in:
Matthieu Gallien 2021-10-14 23:37:16 +02:00 committed by GitHub
commit bc53c3454c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,17 +6,15 @@ Window {
id: dialog
property NC.UserStatusSelectorModel model: NC.UserStatusSelectorModel {
onFinished: {
dialog.close()
}
onFinished: dialog.close()
}
width: view.implicitWidth
height: view.implicitHeight
minimumWidth: view.implicitWidth
minimumHeight: view.implicitHeight
maximumWidth: view.implicitWidth
maximumHeight: view.implicitHeight
width: maximumWidth
height: maximumHeight
visible: true