X11: use XA_STRING for text SDL puts on the clipboard (thanks, "chw"!).

Partially fixes Bugzilla #2266.
This commit is contained in:
Ryan C. Gordon 2015-05-26 21:26:27 -04:00
parent baea64e642
commit cc493d7195
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ X11_SetClipboardText(_THIS, const char *text)
}
/* Save the selection on the root window */
format = TEXT_FORMAT;
format = XA_STRING;
X11_XChangeProperty(display, DefaultRootWindow(display),
X11_GetSDLCutBufferClipboardType(display), format, 8, PropModeReplace,
(const unsigned char *)text, SDL_strlen(text));