Fix message box closing errors

This commit is contained in:
JannisX11 2023-07-18 23:52:13 +02:00
parent d234f3196c
commit 4348e776e7
3 changed files with 8 additions and 8 deletions

View File

@ -660,7 +660,7 @@ BARS.defineActions(function() {
dont_show_again: {value: false, text: 'dialog.dontshowagain'}
},
buttons: ['dialog.cancel']
}, (codec, {dont_show_again}) => {
}, (codec, checkboxes = {}) => {
if (codec == 'both') {
Codecs.project.export();
export_codec.export();
@ -668,7 +668,7 @@ BARS.defineActions(function() {
} else if (codec) {
Codecs[codec].export();
}
if (dont_show_again) {
if (checkboxes.dont_show_again) {
settings.dialog_save_codec.set(false);
}
resolve();

View File

@ -771,8 +771,8 @@ function rotateOnAxis(modify, axis, slider) {
checkboxes: {
dont_show_again: {value: false, text: 'dialog.dontshowagain'}
}
}, (button, {dont_show_again}) => {
if (dont_show_again) {
}, (button, checkboxes = {}) => {
if (checkboxes.dont_show_again) {
settings.dialog_rotation_limit.set(false);
}
})

View File

@ -428,8 +428,8 @@ class Texture {
checkboxes: {
dont_show_again: {value: false, text: 'dialog.dontshowagain'}
}
}, (button, {dont_show_again}) => {
if (dont_show_again) {
}, (button, checkboxes = {}) => {
if (checkboxes.dont_show_again) {
settings.dialog_invalid_characters.set(false);
}
})
@ -743,11 +743,11 @@ class Texture {
checkboxes: {
dont_show_again: {value: false, text: 'dialog.dontshowagain'}
}
}, (result, {dont_show_again}) => {
}, (result, checkboxes = {}) => {
if (result === 1) {
this.reopen()
}
if (dont_show_again) {
if (checkboxes.dont_show_again) {
settings.dialog_loose_texture.set(false);
}
})