From 051c25d5b87c2351df46173f19b907cea436fa3b Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Wed, 28 Sep 2022 02:09:04 +0200 Subject: Allow editing permissions in spaces recursively --- resources/qml/Root.qml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'resources/qml/Root.qml') diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml index 063284c1..dd1dfe1e 100644 --- a/resources/qml/Root.qml +++ b/resources/qml/Root.qml @@ -78,6 +78,22 @@ Pane { destroyOnClose(dialog); } + Component { + id: plApplyPrompt + + PowerLevelSpacesApplyDialog { + } + } + + function showSpacePLApplyPrompt(settings, editingModel) { + var dialog = plApplyPrompt.createObject(timelineRoot, { + "roomSettings": settings, + "editingModel": editingModel + }); + dialog.show(); + destroyOnClose(dialog); + } + Component { id: plEditor -- cgit 1.5.1