summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonsta <[email protected]>2015-12-04 12:18:54 +0300
committermonsta <[email protected]>2015-12-04 12:18:54 +0300
commitf751b7701703f2a1c77e0eeb3935f9ffe4619f23 (patch)
treecbf60061d029cd5c47893b98029c833625c839cf
parent65acb33f3f77a769b83d8aa770eb727c0403c71c (diff)
downloadatril-f751b7701703f2a1c77e0eeb3935f9ffe4619f23.tar.bz2
atril-f751b7701703f2a1c77e0eeb3935f9ffe4619f23.tar.xz
properties page: unescape location URI
from https://git.gnome.org/browse/evince/commit?id=397f67d960dc516619ab11be88455de91695eb5c
-rw-r--r--properties/ev-properties-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/properties/ev-properties-view.c b/properties/ev-properties-view.c
index 96f9b29d..396a9b63 100644
--- a/properties/ev-properties-view.c
+++ b/properties/ev-properties-view.c
@@ -406,7 +406,7 @@ ev_properties_view_new (const gchar *uri)
EvPropertiesView *properties;
properties = g_object_new (EV_TYPE_PROPERTIES, NULL);
- properties->uri = g_strdup (uri);
+ properties->uri = g_uri_unescape_string (uri, NULL);
return GTK_WIDGET (properties);
}