feat(web): add preference for thumbnail playback on hover (#7831)

* feat(web): add preference for thumbnail playback on hover

* pr feedback, add user settings behavior setting

* user settings consistency

* rename appearance to app settings

* collapse single trash setting into app settings
This commit is contained in:
Sam Holton 2024-03-11 12:45:01 -04:00 committed by GitHub
parent 84453d2e34
commit b33cb5fe3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 26 additions and 34 deletions

View file

@ -96,3 +96,5 @@ export const albumViewSettings = persisted<AlbumViewSettings>('album-view-settin
export const showDeleteModal = persisted<boolean>('delete-confirm-dialog', true, {});
export const alwaysLoadOriginalFile = persisted<boolean>('always-load-original-file', false, {});
export const playVideoThumbnailOnHover = persisted<boolean>('play-video-thumbnail-on-hover', true, {});