mirror of https://github.com/Nheko-Reborn/nheko
parent
acc257ea06
commit
81406171a0
@ -0,0 +1,19 @@ |
||||
// 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: logoutRoot |
||||
|
||||
title: qsTr("Log out") |
||||
text: CallManager.isOnCall ? qsTr("A call is in progress. Log out?") : qsTr("Are you sure you want to log out?") |
||||
modality: Qt.WindowModal |
||||
flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint |
||||
buttons: Dialog.Ok | Dialog.Cancel |
||||
onAccepted: Nheko.logout() |
||||
} |
Loading…
Reference in new issue