mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-25 03:10:08 +08:00
fix(SelectionAssistant): default disabled (#6897)
fix: selection default off
This commit is contained in:
parent
d38b5c4d5b
commit
7ac07fd13b
@ -151,7 +151,7 @@ export class ConfigManager {
|
||||
|
||||
// Selection Assistant: is enabled the selection assistant
|
||||
getSelectionAssistantEnabled(): boolean {
|
||||
return this.get<boolean>(ConfigKeys.SelectionAssistantEnabled, true)
|
||||
return this.get<boolean>(ConfigKeys.SelectionAssistantEnabled, false)
|
||||
}
|
||||
|
||||
setSelectionAssistantEnabled(value: boolean) {
|
||||
|
||||
@ -18,7 +18,7 @@ export const defaultActionItems: ActionItem[] = [
|
||||
]
|
||||
|
||||
export const initialState: SelectionState = {
|
||||
selectionEnabled: true,
|
||||
selectionEnabled: false,
|
||||
triggerMode: 'selected',
|
||||
isCompact: false,
|
||||
isAutoClose: false,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user