mirror of https://github.com/Nheko-Reborn/nheko
parent
e8b9d92e8e
commit
e3fe1703fa
@ -0,0 +1,25 @@ |
||||
// 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); |
||||
} |
||||
} |
Loading…
Reference in new issue