Skip to content
Snippets Groups Projects
Unverified Commit e3fe1703 authored by FallenValkyrie's avatar FallenValkyrie
Browse files

Create ImagePackDeleteDialog component

parent e8b9d92e
No related branches found
No related tags found
No related merge requests found
......@@ -766,6 +766,7 @@ set(QML_SOURCES
resources/qml/dialogs/EventExpirationDialog.qml
resources/qml/dialogs/ImageOverlay.qml
resources/qml/dialogs/ImagePackEditorDialog.qml
resources/qml/dialogs/ImagePackDeleteDialog.qml
resources/qml/dialogs/ImagePackSettingsDialog.qml
resources/qml/dialogs/InputDialog.qml
resources/qml/dialogs/InviteDialog.qml
......
// SPDX-FileCopyrightText: Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
import Qt.labs.platform 1.1 as P
import QtQuick
import im.nheko
P.MessageDialog {
id: deleteStickerPackRoot
property SingleImagePackModel imagePack
text: "This will delete the sticker pack: " + imagePack.packname
informativeText: "Are you sure you wish to delete the Sticker pack?"
modality: Qt.ApplicationModal
flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
buttons: P.MessageDialog.Yes | P.MessageDialog.No
onAccepted: {
console.info("DELETE PACK: " + imagePack.packname);
imagePack.remove()
timelineRoot.destroyOnClose(dialog);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment