commit 70bf25cfe5a25869f8c3f0cb10573de597e2b957
parent 5e00dce88c03f1411ca90093f909543b00573975
Author: Paul <paul@claws-mail.org>
Date: Thu, 10 Oct 2019 15:09:12 +0100
fix bug 4257, 'claws-mail 3.17.4 breaks copy-pasting from emacs-gtk3'
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/compose.c b/src/compose.c
@@ -11021,7 +11021,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;