fix: improve carousel behavior and settings option (#1166)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Fredrik Burmester
2025-11-07 15:14:35 +01:00
committed by GitHub
parent 96d6220f5e
commit 0dadfd3d90
5 changed files with 110 additions and 33 deletions

View File

@@ -188,6 +188,7 @@ export type Settings = {
enableLeftSideBrightnessSwipe: boolean;
enableRightSideVolumeSwipe: boolean;
usePopularPlugin: boolean;
showLargeHomeCarousel: boolean;
};
export interface Lockable<T> {
@@ -256,6 +257,7 @@ export const defaultValues: Settings = {
enableLeftSideBrightnessSwipe: true,
enableRightSideVolumeSwipe: true,
usePopularPlugin: true,
showLargeHomeCarousel: true,
};
const loadSettings = (): Partial<Settings> => {