Added the ability to change subtitle size

This commit is contained in:
Alex Kim
2024-12-06 03:40:48 +11:00
parent ac266c6956
commit 97cf9185d3
3 changed files with 48 additions and 4 deletions

View File

@@ -73,8 +73,9 @@ export type Settings = {
rewindSkipTime: number;
optimizedVersionsServerUrl?: string | null;
downloadMethod: "optimized" | "remux";
autoDownload: boolean,
autoDownload: boolean;
showCustomMenuLinks: boolean;
subtitleSize: number;
};
const loadSettings = (): Settings => {
@@ -105,6 +106,7 @@ const loadSettings = (): Settings => {
downloadMethod: "remux",
autoDownload: false,
showCustomMenuLinks: false,
subtitleSize: 60,
};
try {