mirror of
https://github.com/danbulant/node-x11
synced 2026-06-15 20:51:30 +00:00
Really fix the parsing of the event type field
- Typo: use the bitwise operator and not the comparison operator
This commit is contained in:
parent
877d263a93
commit
9ee3721dd2
1 changed files with 2 additions and 1 deletions
|
|
@ -237,7 +237,8 @@ XClient.prototype.unpackEvent = function(type, seq, extra, code, raw)
|
|||
var event = {}; // TODO: constructor & base functions
|
||||
// Remove the most significant bit. See Chapter 1, Event Format section in X11 protocol
|
||||
// specification
|
||||
event.type = type && 0x7F;
|
||||
type = type & 0x7F;
|
||||
event.type = type;
|
||||
event.seq = seq;
|
||||
|
||||
var extUnpacker = this.eventParsers[type];
|
||||
|
|
|
|||
Loading…
Reference in a new issue