mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-04-23 09:14:43 +01:00
feat: hide certain control buttons/sliders
This commit is contained in:
@@ -180,6 +180,10 @@ export type Settings = {
|
||||
enableRightSideVolumeSwipe: boolean;
|
||||
usePopularPlugin: boolean;
|
||||
showLargeHomeCarousel: boolean;
|
||||
// Controls
|
||||
showVolumeSlider: boolean;
|
||||
showBrightnessSlider: boolean;
|
||||
showSeekButtons: boolean;
|
||||
};
|
||||
|
||||
export interface Lockable<T> {
|
||||
@@ -244,6 +248,10 @@ export const defaultValues: Settings = {
|
||||
enableRightSideVolumeSwipe: true,
|
||||
usePopularPlugin: true,
|
||||
showLargeHomeCarousel: false,
|
||||
// Controls
|
||||
showVolumeSlider: true,
|
||||
showBrightnessSlider: true,
|
||||
showSeekButtons: true,
|
||||
};
|
||||
|
||||
const loadSettings = (): Partial<Settings> => {
|
||||
|
||||
Reference in New Issue
Block a user