mirror of
https://github.com/zadam/trilium.git
synced 2025-02-22 14:03:36 +08:00
fix "steel blue" demo theme
This commit is contained in:
parent
533fcd06e4
commit
c5917bfc78
4 changed files with 3 additions and 3 deletions
BIN
db/demo.zip
BIN
db/demo.zip
Binary file not shown.
|
@ -81,7 +81,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"cross-env": "7.0.3",
|
||||
"electron": "13.4.0",
|
||||
"electron": "13.5.0",
|
||||
"electron-builder": "22.11.7",
|
||||
"electron-packager": "15.4.0",
|
||||
"electron-rebuild": "3.2.3",
|
||||
|
|
|
@ -649,7 +649,7 @@ class Note extends AbstractEntity {
|
|||
this.flatTextCache += ' ';
|
||||
}
|
||||
|
||||
this.flatTextCache = utils.removeDiacritic(this.flatTextCache.toLowerCase());
|
||||
this.flatTextCache = utils.normalize(this.flatTextCache);
|
||||
}
|
||||
|
||||
return this.flatTextCache;
|
||||
|
|
|
@ -56,7 +56,7 @@ const defaultOptions = [
|
|||
{ name: 'noteRevisionSnapshotTimeInterval', value: '600', isSynced: true },
|
||||
{ name: 'protectedSessionTimeout', value: '600', isSynced: true },
|
||||
{ name: 'zoomFactor', value: '1.0', isSynced: false },
|
||||
{ name: 'overrideThemeFont', value: 'false', isSynced: false },
|
||||
{ name: 'overrideThemeFonts', value: 'false', isSynced: false },
|
||||
{ name: 'mainFontFamily', value: 'sans-serif', isSynced: false },
|
||||
{ name: 'mainFontSize', value: '100', isSynced: false },
|
||||
{ name: 'treeFontFamily', value: 'sans-serif', isSynced: false },
|
||||
|
|
Loading…
Reference in a new issue