Feat: Auto-Scroll & Double-Tap Adjustment (#69)

This commit is contained in:
Youwes09
2026-05-15 20:36:15 -05:00
parent 062662781a
commit f3f91f1555
7 changed files with 258 additions and 170 deletions
+4
View File
@@ -128,6 +128,8 @@ export interface Settings {
downloadAutoRetry: boolean;
hiddenLibraryTabs: string[];
libraryPinnedTabOrder: string[];
autoScroll?: boolean;
autoScrollSpeed?: number;
}
export const DEFAULT_SETTINGS: Settings = {
@@ -171,4 +173,6 @@ export const DEFAULT_SETTINGS: Settings = {
downloadAutoRetry: false,
hiddenLibraryTabs: [],
libraryPinnedTabOrder: [],
autoScroll: false,
autoScrollSpeed: 5,
};