preserve expert setting preference
This commit is contained in:
parent
336fbd80bd
commit
00fc00c3a4
2 changed files with 6 additions and 3 deletions
|
|
@ -2625,9 +2625,9 @@ self.kiri.license = exports.LICENSE;
|
|||
UC.newButton("save", settingsSave)
|
||||
],[
|
||||
UI.settingsExpert =
|
||||
UC.newButton("expert", () => { UC.setExpert(true) }, {modes:FDM, expert: false}),
|
||||
UC.newButton("expert", () => { UC.setExpert(true); SDB.setItem('expert', true) }, {modes:FDM, expert: false}),
|
||||
UI.settingsExpert =
|
||||
UC.newButton("basic", () => { UC.setExpert(false) }, {modes:FDM, expert: true})
|
||||
UC.newButton("basic", () => { UC.setExpert(false); SDB.removeItem('expert') }, {modes:FDM, expert: true})
|
||||
]
|
||||
]),
|
||||
|
||||
|
|
@ -3827,6 +3827,9 @@ self.kiri.license = exports.LICENSE;
|
|||
// place version number a couple of places to help users
|
||||
UI.helpButton.title = `${LANG.version} ` + KIRI.version;
|
||||
|
||||
// restore expert setting preference
|
||||
UC.setExpert(SDB.getItem('expert') ? true : false);
|
||||
|
||||
// setup tab visibility watcher
|
||||
// DOC.addEventListener('visibilitychange', function() { document.title = document.hidden });
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
var exports = {
|
||||
COPYRIGHT:"Copyright (C) 2014-2019 Stewart Allen <sa@grid.space> - All Rights Reserved",
|
||||
LICENSE:"See the license.md file included with the source distribution",
|
||||
VERSION:"1.5.7"
|
||||
VERSION:"1.5.8"
|
||||
};
|
||||
if (!module) var module = {};
|
||||
module.exports = exports;
|
||||
|
|
|
|||
Loading…
Reference in a new issue