mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
feat(mobile): add ability to force view original videos (#15094)
This commit is contained in:
parent
1f0ffd634a
commit
a13b7b364e
5 changed files with 26 additions and 3 deletions
|
|
@ -63,6 +63,11 @@ enum AppSettingsEnum<T> {
|
|||
logLevel<int>(StoreKey.logLevel, null, 5), // Level.INFO = 5
|
||||
preferRemoteImage<bool>(StoreKey.preferRemoteImage, null, false),
|
||||
loopVideo<bool>(StoreKey.loopVideo, "loopVideo", true),
|
||||
loadOriginalVideo<bool>(
|
||||
StoreKey.loadOriginalVideo,
|
||||
"loadOriginalVideo",
|
||||
false,
|
||||
),
|
||||
mapThemeMode<int>(StoreKey.mapThemeMode, null, 0),
|
||||
mapShowFavoriteOnly<bool>(StoreKey.mapShowFavoriteOnly, null, false),
|
||||
mapIncludeArchived<bool>(StoreKey.mapIncludeArchived, null, false),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue