修复:在拾取点时,关闭动态输入时,允许输入@

pull/2879/head
ChenX 3 months ago
parent 2b12307cf3
commit c90be74a70

@ -425,6 +425,9 @@ export class InputHint extends React.Component<InputHintProps, InputHitState>
onKeyDown={(e) =>
{
SwitchServerStore.GetInstance().DisableIme();
if (CommandState.CommandIng && e.shiftKey) return;
if (e.ctrlKey || e.altKey || e.shiftKey) e.preventDefault();
}}
/>

Loading…
Cancel
Save