diff --git a/CHANGES.md b/CHANGES.md index 4e7ee38e..39227be8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,9 @@ # 3.0.0 - See pre-release version notes for other changes that occurred with 3.0.0 +- Breaking change: For checkbox for persisting choice of initial use storage + approval in storage extension dialog, turn on by default for convenience of + most users (must still hit "ok" and users can still turn off the checkbox) - Fix: Map extension click events to "mousedown" so they can be received on touch devices (since `touch.js` changes `touchstart` to `mousedown`) (@ClemArt); closes #168 diff --git a/editor/extensions/ext-storage.js b/editor/extensions/ext-storage.js index 33398309..c9e91b10 100644 --- a/editor/extensions/ext-storage.js +++ b/editor/extensions/ext-storage.js @@ -261,7 +261,7 @@ export default { null, { label: rememberLabel, - checked: false, + checked: true, tooltip: rememberTooltip } );