Add fixed chat textarea option to AccessibilitySettings

Additionally, change 'send to center' to 'send to shift center'
This commit is contained in:
YH_KIM
2025-04-06 16:37:29 +09:00
parent ea570787c2
commit 4c47480b7e
10 changed files with 213 additions and 196 deletions

View File

@@ -1,7 +1,6 @@
<script lang="ts">
import Check from "src/lib/UI/GUI/CheckInput.svelte";
import { language } from "src/lang";
import { DBState } from 'src/ts/stores.svelte';
</script>
@@ -24,6 +23,10 @@
<Check bind:check={DBState.db.sendWithEnter} name={language.sendWithEnter}/>
</div>
<div class="flex items-center mt-2">
<Check bind:check={DBState.db.fixedChatTextarea} name={language.fixedChatTextarea}/>
</div>
<div class="flex items-center mt-2">
<Check bind:check={DBState.db.clickToEdit} name={language.clickToEdit}/>
</div>