update hash

This commit is contained in:
Jade (Rose) Rowland 2025-11-23 20:25:13 -05:00
parent 4caacb0de1
commit 20016fd9aa
4 changed files with 25 additions and 10 deletions

View file

@ -115,7 +115,7 @@ export function SettingsTab({ started }) {
isTabIndentationEnabled,
isMultiCursorEnabled,
patternAutoStart,
prebakeScript,
includePrebakeScriptInShare,
} = useSettings();
const shouldAlwaysSync = isUdels();
const canChangeAudioDevice = AudioContext.prototype.setSinkId != null;
@ -207,7 +207,15 @@ export function SettingsTab({ started }) {
/>
</FormItem>
</div>
<ImportPrebakeScriptButton />
<FormItem label="Prebake">
<ImportPrebakeScriptButton />
<Checkbox
label="Include prebake script in share"
onChange={(cbEvent) => settingsMap.setKey('includePrebakeScriptInShare', cbEvent.target.checked)}
value={includePrebakeScriptInShare}
/>
</FormItem>
<FormItem label="Keybindings">
<ButtonGroup
value={keybindings}