diff options
author | Reinhard Tartler <siretart@tauware.de> | 2011-11-13 09:52:38 +0100 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2011-11-13 09:52:38 +0100 |
commit | f2f6dab87b8a2c066c5eb242ca73b85f2796a5c0 (patch) | |
tree | 5f7f9279af69639d86d4071c1bd4fb8902ebaea3 /nxcompext | |
parent | abf03fd2c05cbbf24cd9c40e81684706c258ea63 (diff) | |
download | nx-libs-f2f6dab87b8a2c066c5eb242ca73b85f2796a5c0.tar.gz nx-libs-f2f6dab87b8a2c066c5eb242ca73b85f2796a5c0.tar.bz2 nx-libs-f2f6dab87b8a2c066c5eb242ca73b85f2796a5c0.zip |
Imported nxcompext-3.3.0-3.tar.gznxcompext/3.3.0-3
Summary: Imported nxcompext-3.3.0-3.tar.gz
Keywords:
Imported nxcompext-3.3.0-3.tar.gz
into Git repository
Diffstat (limited to 'nxcompext')
-rw-r--r-- | nxcompext/CHANGELOG | 5 | ||||
-rw-r--r-- | nxcompext/NXlib.c | 8 |
2 files changed, 13 insertions, 0 deletions
diff --git a/nxcompext/CHANGELOG b/nxcompext/CHANGELOG index 18f6c27cf..b128802e0 100644 --- a/nxcompext/CHANGELOG +++ b/nxcompext/CHANGELOG @@ -1,5 +1,10 @@ ChangeLog: +nxcompext-3.3.0-3 + +- Now setting the correct event serial number when sending collect + notifies back. + nxcompext-3.3.0-2 - Updated VERSION. diff --git a/nxcompext/NXlib.c b/nxcompext/NXlib.c index ed6052f34..452213bf1 100644 --- a/nxcompext/NXlib.c +++ b/nxcompext/NXlib.c @@ -3424,6 +3424,8 @@ static void _NXNotifyImage(Display *dpy, int resource, Bool success) async_event.type = ClientMessage; + async_event.xclient.serial = _NXCollectedImages[resource] -> sequence; + async_event.xclient.window = 0; async_event.xclient.message_type = 0; async_event.xclient.format = 32; @@ -3815,6 +3817,8 @@ static void _NXNotifyProperty(Display *dpy, int resource, Bool success) async_event.type = ClientMessage; + async_event.xclient.serial = _NXCollectedProperties[resource] -> sequence; + async_event.xclient.window = 0; async_event.xclient.message_type = 0; async_event.xclient.format = 32; @@ -4183,6 +4187,8 @@ static void _NXNotifyGrabPointer(Display *dpy, int resource, Bool success) async_event.type = ClientMessage; + async_event.xclient.serial = _NXCollectedGrabPointers[resource] -> sequence; + async_event.xclient.window = 0; async_event.xclient.message_type = 0; async_event.xclient.format = 32; @@ -4465,6 +4471,8 @@ static void _NXNotifyInputFocus(Display *dpy, int resource, Bool success) async_event.type = ClientMessage; + async_event.xclient.serial = _NXCollectedInputFocuses[resource] -> sequence; + async_event.xclient.window = 0; async_event.xclient.message_type = 0; async_event.xclient.format = 32; |