From 8644bbf73448c101ad30a2a4b910794f69573aee Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 9 Mar 2015 10:04:32 +0100 Subject: [PATCH] uri fix --- gui/qt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py index 2bc92d8a..1dfed30a 100644 --- a/gui/qt/__init__.py +++ b/gui/qt/__init__.py @@ -57,7 +57,7 @@ class OpenFileEventFilter(QObject): def eventFilter(self, obj, event): if event.type() == QtCore.QEvent.FileOpen: if len(self.windows) >= 1: - self.windows[0].set_url(event.url().toEncoded()) + self.windows[0].pay_from_URI(event.url().toEncoded()) return True return False