From eed234a131e8ab286410e63dde6e5913d762bf56 Mon Sep 17 00:00:00 2001 From: Cole Lashley Date: Fri, 5 Apr 2024 13:01:51 -0700 Subject: [PATCH] added codeedit keybinding fix (#554) --- src/app/workspace/cmdinput/textareainput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/workspace/cmdinput/textareainput.tsx b/src/app/workspace/cmdinput/textareainput.tsx index abac0f0a..354cae50 100644 --- a/src/app/workspace/cmdinput/textareainput.tsx +++ b/src/app/workspace/cmdinput/textareainput.tsx @@ -652,7 +652,7 @@ class TextAreaInput extends React.Component<{ screen: Screen; onHeightChange: () } } } - const isMainInputFocused = this.mainInputFocused.get(); + const isMainInputFocused = inputModel.hasFocus() && this.mainInputFocused.get(); const isHistoryFocused = this.historyFocused.get(); return (