1
0
mirror of https://github.com/koloml/philomena-tagging-assistant.git synced 2026-05-09 15:12:21 +00:00

Turn on the fullscreen viewer button by default

This commit is contained in:
2024-08-10 15:05:09 +04:00
parent e9b68137de
commit c9d20be33d
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
import {writable} from "svelte/store";
import MiscSettings from "$lib/extension/settings/MiscSettings.js";
export const fullScreenViewerEnabled = writable(false);
export const fullScreenViewerEnabled = writable(true);
const miscSettings = new MiscSettings();