Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/libdocument
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2009-11-16 11:53:06 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2009-11-16 13:28:49 (GMT)
commit43f607bda8eef3648f018e433647172603ea1a7f (patch)
tree60250ae6fd9af4af1dcca022dc1f703a4d92b484 /libdocument
parent9cea7543efb218a7a71097fa78e1841cab1e95af (diff)
[libdocument] Do not require GAppInfo to support uris when opening an attachment
We are already saving the attachment to a local temp file.
Diffstat (limited to 'libdocument')
-rw-r--r--libdocument/ev-attachment.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdocument/ev-attachment.c b/libdocument/ev-attachment.c
index b792b5f..0e9653d 100644
--- a/libdocument/ev-attachment.c
+++ b/libdocument/ev-attachment.c
@@ -397,7 +397,7 @@ ev_attachment_open (EvAttachment *attachment,
g_return_val_if_fail (EV_IS_ATTACHMENT (attachment), FALSE);
if (!attachment->priv->app) {
- app_info = g_app_info_get_default_for_type (attachment->priv->mime_type, TRUE);
+ app_info = g_app_info_get_default_for_type (attachment->priv->mime_type, FALSE);
attachment->priv->app = app_info;
}