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

View File

@@ -149,6 +149,12 @@ export const SettingsInterfacePanel: React.FC = () => {
</SettingSection>
<SettingSection headingID="config.ui.scene_player.heading">
<BooleanSetting
id="show-scrubber"
headingID="config.ui.scene_player.options.show_scrubber"
checked={iface.showScrubber ?? undefined}
onChange={(v) => saveInterface({ showScrubber: v })}
/>
<BooleanSetting
id="auto-start-video"
headingID="config.ui.scene_player.options.auto_start_video"