mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
X11: generate clipboard update events (thanks, "chw"!).
Partially fixes Bugzilla #2266.
This commit is contained in:
parent
059a030716
commit
c69a559239
@ -1219,6 +1219,16 @@ X11_DispatchEvent(_THIS)
|
||||
}
|
||||
break;
|
||||
|
||||
case SelectionClear: {
|
||||
Atom XA_CLIPBOARD = X11_XInternAtom(display, "CLIPBOARD", 0);
|
||||
|
||||
if (xevent.xselectionclear.selection == XA_PRIMARY ||
|
||||
(XA_CLIPBOARD != None && xevent.xselectionclear.selection == XA_CLIPBOARD)) {
|
||||
SDL_SendClipboardUpdate();
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
default:{
|
||||
#ifdef DEBUG_XEVENTS
|
||||
printf("window %p: Unhandled event %d\n", data, xevent.type);
|
||||
|
Loading…
Reference in New Issue
Block a user