mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 975276 - Fix cursor parameter mistake of setComposition. r=masayuki
This commit is contained in:
parent
8e4824a6f8
commit
370330a323
@ -574,7 +574,7 @@ MozInputContext.prototype = {
|
||||
contextId: self._contextId,
|
||||
requestId: resolverId,
|
||||
text: text,
|
||||
cursor: cursor || text.length,
|
||||
cursor: (typeof cursor !== 'undefined') ? cursor : text.length,
|
||||
clauses: clauses || null
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user