Commit f2f6dab8 authored by Reinhard Tartler's avatar Reinhard Tartler

Imported nxcompext-3.3.0-3.tar.gz

Summary: Imported nxcompext-3.3.0-3.tar.gz Keywords: Imported nxcompext-3.3.0-3.tar.gz into Git repository
parent abf03fd2
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.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment