aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-11-19 19:52:17 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-11-19 19:52:17 +0800
commite14ec8882808dd938a1edbfcadd399a4f20e1569 (patch)
tree8a1c84eb852ea5559113ec126568060c800fe562
parent9a346d73c432abf557ae46aa09e079b07840a2f3 (diff)
downloadgsoc2013-evolution-e14ec8882808dd938a1edbfcadd399a4f20e1569.tar
gsoc2013-evolution-e14ec8882808dd938a1edbfcadd399a4f20e1569.tar.gz
gsoc2013-evolution-e14ec8882808dd938a1edbfcadd399a4f20e1569.tar.bz2
gsoc2013-evolution-e14ec8882808dd938a1edbfcadd399a4f20e1569.tar.lz
gsoc2013-evolution-e14ec8882808dd938a1edbfcadd399a4f20e1569.tar.xz
gsoc2013-evolution-e14ec8882808dd938a1edbfcadd399a4f20e1569.tar.zst
gsoc2013-evolution-e14ec8882808dd938a1edbfcadd399a4f20e1569.zip
BugĀ 599190 - Drag and drop broken for received MIME parts
-rw-r--r--widgets/misc/e-attachment-view.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/widgets/misc/e-attachment-view.c b/widgets/misc/e-attachment-view.c
index 9976f480e3..d734f905c7 100644
--- a/widgets/misc/e-attachment-view.c
+++ b/widgets/misc/e-attachment-view.c
@@ -1386,10 +1386,11 @@ e_attachment_view_drag_data_get (EAttachmentView *view,
g_list_free (selected);
/* We can't return until we have results, so crank
- * the main loop until the callback gets triggered. */
+ * the main loop until the callback gets triggered.
+ * Note: Don't test for main loop exit. There is
+ * some kind of nested main loop at work here. */
while (!status.done)
- if (gtk_main_iteration ())
- break;
+ gtk_main_iteration ();
if (status.uris != NULL)
gtk_selection_data_set_uris (selection, status.uris);