Fix: Added Download Toggles to Global-Store (#63)

This commit is contained in:
Youwes09
2026-05-02 17:40:07 -05:00
parent b4d680ddd1
commit bd95bf4eb1
2 changed files with 13 additions and 8 deletions
+4
View File
@@ -124,6 +124,8 @@ export interface Settings {
trackerRespectScanlatorFilter: boolean;
pinchZoom?: boolean;
autoLinkOnOpen: boolean;
downloadToastsEnabled: boolean;
downloadAutoRetry: boolean;
}
export const DEFAULT_SETTINGS: Settings = {
@@ -163,4 +165,6 @@ export const DEFAULT_SETTINGS: Settings = {
trackerRespectScanlatorFilter: true,
pinchZoom: false,
autoLinkOnOpen: false,
downloadToastsEnabled: true,
downloadAutoRetry: false,
};