Add setting for showing scene scrubber by default (#2325)

This commit is contained in:
WithoutPants
2022-02-20 11:08:05 +11:00
committed by GitHub
parent 4a6e26dcc8
commit d678283486
8 changed files with 51 additions and 56 deletions
+1
View File
@@ -51,6 +51,7 @@ fragment ConfigInterfaceData on ConfigInterfaceResult {
soundOnPreview
wallShowTitle
wallPlayback
showScrubber
maximumLoopDuration
noBrowser
notificationsEnabled
+6
View File
@@ -207,6 +207,9 @@ input ConfigInterfaceInput {
wallShowTitle: Boolean
"""Wall playback type"""
wallPlayback: String
"""Show scene scrubber by default"""
showScrubber: Boolean
"""Maximum duration (in seconds) in which a scene video will loop in the scene player"""
maximumLoopDuration: Int
@@ -261,6 +264,9 @@ type ConfigInterfaceResult {
"""Wall playback type"""
wallPlayback: String
"""Show scene scrubber by default"""
showScrubber: Boolean
"""Maximum duration (in seconds) in which a scene video will loop in the scene player"""
maximumLoopDuration: Int
"""True if we should not auto-open a browser window on startup"""