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

Fix review issues

parent adc7fb86
No related branches found
No related tags found
No related merge requests found
......@@ -11,14 +11,13 @@ P.MessageDialog {
property SingleImagePackModel imagePack
text: "This will delete the sticker pack: " + imagePack.packname
informativeText: "Are you sure you wish to delete the Sticker pack?"
text: "Are you sure you wish to delete the sticker pack \"" + imagePack.packname + "\"?"
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);
console.info("deleting image 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