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.
1 parent 64b7061 commit c8109aeCopy full SHA for c8109ae
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