From: Paul Date: Thu, 10 Oct 2019 14:09:12 +0000 (+0100) Subject: fix bug 4257, 'claws-mail 3.17.4 breaks copy-pasting from emacs-gtk3' X-Git-Tag: 3.17.5~50 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=b910146ff51f32e9501fb4ad5537a47ceb06f154 fix bug 4257, 'claws-mail 3.17.4 breaks copy-pasting from emacs-gtk3' --- diff --git a/src/compose.c b/src/compose.c index b886872f6..fc89629e3 100644 --- a/src/compose.c +++ b/src/compose.c @@ -11022,7 +11022,7 @@ static void entry_paste_clipboard(Compose *compose, GtkWidget *entry, gboolean wrap, GdkAtom clip, GtkTextIter *insert_place) { if (GTK_IS_TEXT_VIEW(entry)) { - GdkAtom types = gdk_atom_intern ("TARGETS", FALSE); + GdkAtom types = gdk_atom_intern ("MULTIPLE", FALSE); GdkAtom *targets = NULL; int n_targets = 0, i; gboolean paste_done = FALSE;