mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 13:09:01 +01:00
client/settings/disable backdrop effects: add an option to enable or disable backdrop effects
This commit is contained in:
parent
d35dbca18b
commit
94ddad3c49
@ -65,6 +65,7 @@ const ALLOWED_OPTIONS = new Set<OptionNames>([
|
||||
"monthlyBackupEnabled",
|
||||
"motionEnabled",
|
||||
"shadowsEnabled",
|
||||
"backdropEffectsEnabled",
|
||||
"maxContentWidth",
|
||||
"compressImages",
|
||||
"downloadImagesAutomatically",
|
||||
|
||||
@ -154,6 +154,7 @@ const defaultOptions: DefaultOption[] = [
|
||||
},
|
||||
{ name: "motionEnabled", value: "true", isSynced: false },
|
||||
{ name: "shadowsEnabled", value: "true", isSynced: false },
|
||||
{ name: "backdropEffectsEnabled", value: "true", isSynced: false },
|
||||
|
||||
|
||||
// Internationalization
|
||||
|
||||
@ -95,6 +95,7 @@ export interface OptionDefinitions extends KeyboardShortcutsOptions<KeyboardActi
|
||||
splitEditorOrientation: "horziontal" | "vertical";
|
||||
motionEnabled: boolean;
|
||||
shadowsEnabled: boolean;
|
||||
backdropEffectsEnabled: boolean;
|
||||
codeNoteTheme: string;
|
||||
|
||||
initialized: boolean;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user