This commit is contained in:
ThomasV 2015-03-09 10:04:32 +01:00
parent 4780d8f811
commit 8644bbf734
1 changed files with 1 additions and 1 deletions

View File

@ -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