diff options
author | Milan Crha <mcrha@redhat.com> | 2009-11-10 21:26:19 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-11-10 21:26:19 +0800 |
commit | 26889bef61bc32efd202bad6e736ac2fcaf586e0 (patch) | |
tree | fef364c5a2b05e1a5a911ff10bd8e1436cf5e788 /widgets | |
parent | b9953ceaed91acfcca24a54240ff51847526e6a8 (diff) | |
download | gsoc2013-evolution-26889bef61bc32efd202bad6e736ac2fcaf586e0.tar.gz gsoc2013-evolution-26889bef61bc32efd202bad6e736ac2fcaf586e0.tar.zst gsoc2013-evolution-26889bef61bc32efd202bad6e736ac2fcaf586e0.zip |
Bug #601218 - Accepted meeting doesn't show attachments in calendar view
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-attachment.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/widgets/misc/e-attachment.c b/widgets/misc/e-attachment.c index 44bf29c202..1fec792d7d 100644 --- a/widgets/misc/e-attachment.c +++ b/widgets/misc/e-attachment.c @@ -1699,12 +1699,12 @@ attachment_load_query_info_cb (GFile *file, cancellable = attachment->priv->cancellable; file_info = g_file_query_info_finish (file, result, &error); - attachment_set_file_info (attachment, file_info); - load_context->file_info = file_info; - if (attachment_load_check_for_error (load_context, error)) return; + attachment_set_file_info (attachment, file_info); + load_context->file_info = file_info; + load_context->total_num_bytes = g_file_info_get_size (file_info); g_file_read_async ( |