aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-attachment.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2013-07-31 16:49:47 +0800
committerMilan Crha <mcrha@redhat.com>2013-07-31 16:49:47 +0800
commit9f2b63e96abe929368ca6d9b5eb8f4b0dd97fd8d (patch)
tree53da8cb77d96fb24197fe6d1110508129207c6fd /e-util/e-attachment.c
parent99e63b4f7dd6be4d7a65b0d150d7cb0a69adf5f1 (diff)
downloadgsoc2013-evolution-9f2b63e96abe929368ca6d9b5eb8f4b0dd97fd8d.tar
gsoc2013-evolution-9f2b63e96abe929368ca6d9b5eb8f4b0dd97fd8d.tar.gz
gsoc2013-evolution-9f2b63e96abe929368ca6d9b5eb8f4b0dd97fd8d.tar.bz2
gsoc2013-evolution-9f2b63e96abe929368ca6d9b5eb8f4b0dd97fd8d.tar.lz
gsoc2013-evolution-9f2b63e96abe929368ca6d9b5eb8f4b0dd97fd8d.tar.xz
gsoc2013-evolution-9f2b63e96abe929368ca6d9b5eb8f4b0dd97fd8d.tar.zst
gsoc2013-evolution-9f2b63e96abe929368ca6d9b5eb8f4b0dd97fd8d.zip
[workaround] Bug #695633 - Attachments disappear after opening one
Diffstat (limited to 'e-util/e-attachment.c')
-rw-r--r--e-util/e-attachment.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/e-util/e-attachment.c b/e-util/e-attachment.c
index e068b13a90..bfde09d900 100644
--- a/e-util/e-attachment.c
+++ b/e-util/e-attachment.c
@@ -560,10 +560,10 @@ attachment_set_saving (EAttachment *attachment,
attachment->priv->saving = saving;
attachment->priv->last_percent_notify = 0;
- g_object_freeze_notify (G_OBJECT (attachment));
+ /* g_object_freeze_notify (G_OBJECT (attachment));
g_object_notify (G_OBJECT (attachment), "percent");
g_object_notify (G_OBJECT (attachment), "saving");
- g_object_thaw_notify (G_OBJECT (attachment));
+ g_object_thaw_notify (G_OBJECT (attachment)); */
}
static void
@@ -587,7 +587,7 @@ attachment_progress_cb (goffset current_num_bytes,
if (new_percent != attachment->priv->percent) {
attachment->priv->percent = new_percent;
- g_object_notify (G_OBJECT (attachment), "percent");
+ /* g_object_notify (G_OBJECT (attachment), "percent"); */
}
}