Create movies from scene edit dropdown (#3928)

This commit is contained in:
dogwithakeyboard
2023-07-26 05:02:38 +01:00
committed by GitHub
parent 424aad8307
commit 9f2d12834b
8 changed files with 60 additions and 3 deletions

View File

@@ -549,6 +549,19 @@ export const SettingsInterfacePanel: React.FC = () => {
})
}
/>
<BooleanSetting
id="disableDropdownCreate_movie"
headingID="movie"
checked={iface.disableDropdownCreate?.movie ?? undefined}
onChange={(v) =>
saveInterface({
disableDropdownCreate: {
...iface.disableDropdownCreate,
movie: v,
},
})
}
/>
</div>
<NumberSetting
id="max_options_shown"