xP: don't interrupt IME composition
On Vivaldi/macOS, pressing Enter would send the input and still keep editing it as it was.
This commit is contained in:
parent
a9b46141a9
commit
175533a5e9
|
@ -997,7 +997,7 @@ let Input = {
|
||||||
rpc.send({command: 'Active'})
|
rpc.send({command: 'Active'})
|
||||||
|
|
||||||
let b = buffers.get(bufferCurrent)
|
let b = buffers.get(bufferCurrent)
|
||||||
if (b === undefined)
|
if (b === undefined || event.isComposing)
|
||||||
return
|
return
|
||||||
|
|
||||||
let textarea = event.currentTarget
|
let textarea = event.currentTarget
|
||||||
|
|
Loading…
Reference in New Issue