mirror of
https://github.com/danbulant/node-x11
synced 2026-06-24 17:21:47 +00:00
Fix ConfigureNotify event name
This commit is contained in:
parent
d4179af963
commit
69825534f6
1 changed files with 1 additions and 1 deletions
|
|
@ -322,7 +322,7 @@ XClient.prototype.unpackEvent = function(type, seq, extra, code, raw)
|
||||||
event.wid = values[0];
|
event.wid = values[0];
|
||||||
} else if (type == 22) {
|
} else if (type == 22) {
|
||||||
var values = raw.unpack('LLssSSSC');
|
var values = raw.unpack('LLssSSSC');
|
||||||
event.name = 'Overlap' //?
|
event.name = 'ConfigureNotify';
|
||||||
event.wid = extra;
|
event.wid = extra;
|
||||||
event.wid1 = values[0];
|
event.wid1 = values[0];
|
||||||
event.aboveSibling = values[1];
|
event.aboveSibling = values[1];
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue