mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-17 00:26:41 +03:00
Fix edit mode focus stealing (#172)
This commit is contained in:
@@ -6169,7 +6169,9 @@ void main() {
|
||||
}
|
||||
|
||||
function shouldFocusSteerChat() {
|
||||
return state !== 'CONFIGURING' && !steerLocked;
|
||||
return state !== 'CONFIGURING'
|
||||
&& state !== 'EDITING'
|
||||
&& !steerLocked;
|
||||
}
|
||||
|
||||
function pageHasHostTextSelection() {
|
||||
|
||||
Reference in New Issue
Block a user