Add auto scroll configuration to settings.

This commit is contained in:
gq97a6 2025-04-25 03:50:45 +02:00
parent edd83c0908
commit 98e323af4c
2 changed files with 19 additions and 0 deletions

View File

@ -1699,6 +1699,23 @@ export function Settings() {
}
></input>
</ListItem>
<ListItem
title={Locale.Settings.AutoScroll.Title}
subTitle={Locale.Settings.AutoScroll.SubTitle}
>
<input
aria-label={Locale.Settings.AutoScroll.Title}
type="checkbox"
checked={config.enableAutoScroll}
data-testid="enable-auto-scroll-checkbox"
onChange={(e) =>
updateConfig(
(config) =>
(config.enableAutoScroll = e.currentTarget.checked),
)
}
></input>
</ListItem>
</List>
<SyncItems />

View File

@ -55,6 +55,8 @@ export const DEFAULT_CONFIG = {
enableCodeFold: true, // code fold config
enableAutoScroll: true, // auto scroll config
disablePromptHint: false,
dontShowMaskSplashScreen: false, // dont show splash screen when create chat