mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2025-04-13 04:15:43 +02:00
Merge pull request #3884 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:
commit
bc53c3454c
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user