mirror of https://github.com/encounter/SDL.git
Don't include the null terminator in Wayland clipboard text
Fixes https://github.com/libsdl-org/SDL/issues/6083
This commit is contained in:
parent
f6b81125b3
commit
948dbe7d3f
|
@ -43,7 +43,7 @@ Wayland_SetClipboardText(_THIS, const char *text)
|
||||||
if (text[0] != '\0') {
|
if (text[0] != '\0') {
|
||||||
SDL_WaylandDataSource* source = Wayland_data_source_create(_this);
|
SDL_WaylandDataSource* source = Wayland_data_source_create(_this);
|
||||||
Wayland_data_source_add_data(source, TEXT_MIME, text,
|
Wayland_data_source_add_data(source, TEXT_MIME, text,
|
||||||
SDL_strlen(text) + 1);
|
SDL_strlen(text));
|
||||||
|
|
||||||
status = Wayland_data_device_set_selection(data_device, source);
|
status = Wayland_data_device_set_selection(data_device, source);
|
||||||
if (status != 0) {
|
if (status != 0) {
|
||||||
|
|
Loading…
Reference in New Issue