We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb141a5 + 4d2b2e7 commit da5cf39Copy full SHA for da5cf39
gui/src/components/mainInput/InputToolbar.tsx
@@ -222,8 +222,8 @@ function InputToolbar(props: InputToolbarProps) {
222
props.onEnter({
223
useCodebase: false,
224
noContext: useActiveFile
225
- ? !(isMetaEquivalentKeyPressed(e as any) || e.altKey)
226
- : isMetaEquivalentKeyPressed(e as any) || e.altKey,
+ ? isMetaEquivalentKeyPressed(e as any) || e.altKey
+ : !(isMetaEquivalentKeyPressed(e as any) || e.altKey),
227
});
228
}
229
}}
0 commit comments