Fix sprite deletion 'no' option

This commit is contained in:
Wolfsblvt
2025-02-20 18:51:44 +01:00
parent 135bf8a55b
commit a40f568409

View File

@ -1904,7 +1904,7 @@ async function onClickExpressionDelete(event) {
const confirmation = await Popup.show.confirm(t`Delete Expression`, t`Are you sure you want to delete this expression? Once deleted, it\'s gone forever!` const confirmation = await Popup.show.confirm(t`Delete Expression`, t`Are you sure you want to delete this expression? Once deleted, it\'s gone forever!`
+ '<br /><br />' + '<br /><br />'
+ t`Expression:` + ' <tt>' + expressionListItem.attr('data-filename')) + '</tt>'; + t`Expression:` + ' <tt>' + expressionListItem.attr('data-filename') + '</tt>');
if (!confirmation) { if (!confirmation) {
return; return;
} }