mirror of https://github.com/libsdl-org/SDL.git
x11: Set correct clipboard target type in `SelectionRequest` handling
This commit is contained in:
parent
3deb07ea39
commit
5fe010270a
|
|
@ -676,9 +676,10 @@ static void X11_HandleClipboardEvent(_THIS, const XEvent *xevent)
|
|||
&overflow, &seln_data) == Success) {
|
||||
if (seln_format != None) {
|
||||
X11_XChangeProperty(display, req->requestor, req->property,
|
||||
sevent.xselection.target, seln_format, PropModeReplace,
|
||||
req->target, 8, PropModeReplace,
|
||||
seln_data, nbytes);
|
||||
sevent.xselection.property = req->property;
|
||||
sevent.xselection.target = req->target;
|
||||
X11_XFree(seln_data);
|
||||
break;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in New Issue