Fix edit mode focus stealing (#172)

This commit is contained in:
Abdul Wahab
2026-05-28 20:19:30 -07:00
committed by GitHub
parent 6ef995f8a4
commit d6e392311c
15 changed files with 50 additions and 14 deletions
@@ -6169,7 +6169,9 @@ void main() {
}
function shouldFocusSteerChat() {
return state !== 'CONFIGURING' && !steerLocked;
return state !== 'CONFIGURING'
&& state !== 'EDITING'
&& !steerLocked;
}
function pageHasHostTextSelection() {