mirror of
https://github.com/JannisX11/blockbench.git
synced 2025-03-31 17:21:07 +08:00
Fix message box closing errors
This commit is contained in:
parent
d234f3196c
commit
4348e776e7
@ -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();
|
||||
|
@ -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);
|
||||
}
|
||||
})
|
||||
|
@ -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);
|
||||
}
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user