Merge pull request #29 from santigimeno/fix_parsing_event_type_field

Really fix the parsing of the event type field
This commit is contained in:
Andrey Sidorov 2013-05-22 06:51:13 -07:00
commit f927634d60

View file

@ -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];