From 80cfccbf8d4aa86089f5cbf90ccdc9a87444877e Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 26 May 2015 22:57:42 -0400 Subject: [PATCH] Back out changeset b80349dd6d40. This change didn't do what I thought it did, sorry. --- src/video/x11/SDL_x11clipboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/x11/SDL_x11clipboard.c b/src/video/x11/SDL_x11clipboard.c index 60dbfe717a121..eca40f2af9dc1 100644 --- a/src/video/x11/SDL_x11clipboard.c +++ b/src/video/x11/SDL_x11clipboard.c @@ -72,7 +72,7 @@ X11_SetClipboardText(_THIS, const char *text) } /* Save the selection on the root window */ - format = XA_STRING; + format = TEXT_FORMAT; X11_XChangeProperty(display, DefaultRootWindow(display), X11_GetSDLCutBufferClipboardType(display), format, 8, PropModeReplace, (const unsigned char *)text, SDL_strlen(text));