[gnome-documents/wip/lokdocview-rebase: 3/29] lokview: Fix loading files with spaces in their path
- From: Debarshi Ray <debarshir src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-documents/wip/lokdocview-rebase: 3/29] lokview: Fix loading files with spaces in their path
- Date: Mon, 4 Jan 2016 11:56:42 +0000 (UTC)
commit 0897d4f7396692afd3efab378c77fa8fc2ece390
Author: Bastien Nocera <hadess hadess net>
Date: Fri Dec 4 15:59:20 2015 +0100
lokview: Fix loading files with spaces in their path
src/lokview.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/lokview.js b/src/lokview.js
index 22539b7..d3ffb7a 100644
--- a/src/lokview.js
+++ b/src/lokview.js
@@ -114,7 +114,7 @@ const LOKView = new Lang.Class({
_onLoadFinished: function(manager, doc, docModel) {
if (docModel == null && doc != null) {
- let location = doc.uri.replace ('file://', '');
+ let [ location, ] = GLib.filename_from_uri (doc.uri);
this._doc = doc;
this.view.open_document(location, null, Lang.bind(this, this.open_document_cb), null);
this._progressBar.show();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]