mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
28 lines
558 B
QML
28 lines
558 B
QML
import QtQuick.Window 2.15
|
|
|
|
import com.nextcloud.desktopclient 1.0 as NC
|
|
|
|
Window {
|
|
id: dialog
|
|
|
|
property NC.UserStatusSelectorModel model: NC.UserStatusSelectorModel {
|
|
onFinished: dialog.close()
|
|
}
|
|
|
|
minimumWidth: view.implicitWidth
|
|
minimumHeight: view.implicitHeight
|
|
maximumWidth: view.implicitWidth
|
|
maximumHeight: view.implicitHeight
|
|
width: maximumWidth
|
|
height: maximumHeight
|
|
|
|
visible: true
|
|
|
|
flags: Qt.Dialog
|
|
|
|
UserStatusSelector {
|
|
id: view
|
|
userStatusSelectorModel: model
|
|
}
|
|
}
|