Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFelix Weilbach <felix.weilbach@nextcloud.com>2021-10-12 11:56:37 +0300
committerMatthieu Gallien (Rebase PR Action) <matthieu_gallien@yahoo.fr>2021-10-14 22:56:39 +0300
commitf27ef02273a49956bb420a599a8dd46cd3f47be1 (patch)
tree5b6c581684767052f5c26cac599665310a4ed974 /src
parent7206d626eebb598344a2448f1f905a442ac2d08d (diff)
Set dialog max and min width and height before width and height
Otherwise, resize events will not be processed correctly. Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
Diffstat (limited to 'src')
-rw-r--r--src/gui/UserStatusSelectorDialog.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/UserStatusSelectorDialog.qml b/src/gui/UserStatusSelectorDialog.qml
index 624b24f86..65286bd69 100644
--- a/src/gui/UserStatusSelectorDialog.qml
+++ b/src/gui/UserStatusSelectorDialog.qml
@@ -11,12 +11,12 @@ Window {
}
}
- width: view.implicitWidth
- height: view.implicitHeight
minimumWidth: view.implicitWidth
minimumHeight: view.implicitHeight
maximumWidth: view.implicitWidth
maximumHeight: view.implicitHeight
+ width: maximumWidth
+ height: maximumHeight
visible: true