Merge pull request #270 from Alexk2309/change/default-subtitle-size-for-different-platforms

Changed default subtitle size depending platform
This commit is contained in:
Fredrik Burmester
2024-12-09 15:04:30 +01:00
committed by GitHub

View File

@@ -2,6 +2,7 @@ import { atom, useAtom } from "jotai";
import { useEffect } from "react";
import * as ScreenOrientation from "expo-screen-orientation";
import { storage } from "../mmkv";
import { Platform } from "react-native";
export type DownloadQuality = "original" | "high" | "low";
@@ -107,7 +108,7 @@ const loadSettings = (): Settings => {
downloadMethod: "remux",
autoDownload: false,
showCustomMenuLinks: false,
subtitleSize: 60,
subtitleSize: Platform.OS === "ios" ? 60 : 100,
remuxConcurrentLimit: 1,
};