From 546433a4b7f936dc30d71104f7e6ddae2e0d9b9d Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Wed, 10 May 2017 20:20:50 +0200 Subject: [PATCH] gtkclipboard: Fix typo The standard atom is UTF8_STRING. --- gtk/gtkclipboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkclipboard.c b/gtk/gtkclipboard.c index b671128596..5314c8213e 100644 --- a/gtk/gtkclipboard.c +++ b/gtk/gtkclipboard.c @@ -1044,7 +1044,7 @@ request_text_received_func (GtkClipboard *clipboard, if (target == gdk_atom_intern_static_string ("text/plain;charset=utf-8")) { gtk_clipboard_request_contents (clipboard, - gdk_atom_intern_static_string ("UTF8_TEXT"), + gdk_atom_intern_static_string ("UTF8_STRING"), request_text_received_func, info); return; }