diff --git a/src/video/x11/SDL_x11video.c b/src/video/x11/SDL_x11video.c index b5dab99b5fbbc..934632f33178e 100644 --- a/src/video/x11/SDL_x11video.c +++ b/src/video/x11/SDL_x11video.c @@ -475,6 +475,10 @@ static bool X11_VideoInit(SDL_VideoDevice *_this) X11_InitPen(_this); + // Request currently available mime-types in the clipboard. + X11_XConvertSelection(data->display, data->atoms.CLIPBOARD, data->atoms.TARGETS, + data->atoms.SDL_FORMATS, GetWindow(_this), CurrentTime); + return true; }