mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
20 lines
490 B
QML
20 lines
490 B
QML
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import Qt.labs.platform 1.1 as P
|
|
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import im.nheko 1.0
|
|
|
|
P.MessageDialog {
|
|
id: leaveRoomRoot
|
|
|
|
required property string roomId
|
|
|
|
title: qsTr("Leave room")
|
|
text: qsTr("Are you sure you want to leave?")
|
|
modality: Qt.ApplicationModal
|
|
buttons: P.MessageDialog.Ok | P.MessageDialog.Cancel
|
|
onAccepted: Rooms.leave(roomId)
|
|
}
|