Fix review issues

pull/1630/head
FallenValkyrie 1 year ago
parent adc7fb8655
commit b91c70a8ea
No known key found for this signature in database
GPG Key ID: 9D1AE3C23A00B8BC
  1. 5
      resources/qml/dialogs/ImagePackDeleteDialog.qml

@ -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);
}

Loading…
Cancel
Save