mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
14488a8fe7
This ports the leave room dialog to QML, everywhere. There are now no differences between the various leave dialogs.
20 lines
465 B
QML
20 lines
465 B
QML
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import Qt.labs.platform 1.1
|
|
import im.nheko 1.0
|
|
|
|
MessageDialog {
|
|
id: leaveRoomRoot
|
|
|
|
required property string roomId
|
|
|
|
title: qsTr("Leave room")
|
|
text: qsTr("Are you sure you want to leave?")
|
|
modality: Qt.ApplicationModal
|
|
buttons: Dialog.Ok | Dialog.Cancel
|
|
onAccepted: Rooms.leave(roomId)
|
|
}
|