Change the local storage setting name 'CompactMode' to 'compactMode'

We want to re-force the choice, i.e. people who mistakenly set
their UI to compact mode, now will get tabbed mode and can
decide, if they like it better or not.

Signed-off-by: Andras Timar <andras.timar@collabora.com>
Change-Id: Ic5810321abf2cbc3996478816fe153d848c66c71
This commit is contained in:
Andras Timar 2023-10-09 21:27:18 +02:00 committed by Michael Meeks
parent 022e32e5d2
commit 6eb60acffd

View file

@ -66,7 +66,7 @@ L.Control.UIManager = L.Control.extend({
},
shouldUseNotebookbarMode: function() {
var forceCompact = this.getSavedStateOrDefault('CompactMode', null);
var forceCompact = this.getSavedStateOrDefault('compactMode', null);
return (window.userInterfaceMode === 'notebookbar' && forceCompact === null)
|| forceCompact === false;
},
@ -542,7 +542,7 @@ L.Control.UIManager = L.Control.extend({
break;
}
this.setSavedState('CompactMode', uiMode.mode === 'classic');
this.setSavedState('compactMode', uiMode.mode === 'classic');
this.initializeSidebar();
this.insertCustomButtons();
@ -1488,15 +1488,15 @@ L.Control.UIManager = L.Control.extend({
},
setSavedState: function(name, state) {
var docType = (name === 'CompactMode') ? null : this.map.getDocType();
var docType = (name === 'compactMode') ? null : this.map.getDocType();
if (window.isLocalStorageAllowed)
localStorage.setItem('UIDefaults_' + docType + '_' + name, state);
},
getSavedStateOrDefault: function(name, forcedDefault) {
var retval = forcedDefault !== undefined ? forcedDefault : true;
// we request CompactMode very early, no info about doctype so unify all the calls
var docType = (name === 'CompactMode') ? null : this.map.getDocType();
// we request compactMode very early, no info about doctype so unify all the calls
var docType = (name === 'compactMode') ? null : this.map.getDocType();
var state = null;
if (window.isLocalStorageAllowed)
state = localStorage.getItem('UIDefaults_' + docType + '_' + name);