Skip to content

Commit

Permalink
update the compatibility mode message
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Aug 8, 2023
1 parent 31a06a6 commit 6082ffd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions extensions/lab/text.js
Original file line number Diff line number Diff line change
Expand Up @@ -1016,13 +1016,13 @@

disableCompatibilityMode() {
let popup = [
'Enabling this will allow the use of new fonts as well as new blocks.'
+ '\n' +
'These blocks and features DO NOT WORK with the official Scratch Lab.'
+ '\n' + '\n' +
'Do you wish to continue?'];
if (confirm(popup.join())) compatibilityMode = false;
Scratch.vm.extensionManager.refreshBlocks();
'This will enable new blocks and features that WILL NOT WORK in the offical Scratch Lab.',
'Do you wish to continue?'
];
if (confirm(popup.join('\n\n'))) {
compatibilityMode = false;
Scratch.vm.extensionManager.refreshBlocks();
}
}

setAlignment (args, util) {
Expand Down

0 comments on commit 6082ffd

Please sign in to comment.