Fix drag n drop adding of torrents with space in filename
This commit is contained in:
parent
6e35589ea9
commit
0e6dc927b3
|
@ -37,6 +37,7 @@ import gtk, gtk.glade
|
|||
import gobject
|
||||
import pkg_resources
|
||||
from urlparse import urlparse
|
||||
import urllib
|
||||
|
||||
from deluge.ui.client import aclient as client
|
||||
import deluge.component as component
|
||||
|
@ -192,6 +193,6 @@ class MainWindow(component.Component):
|
|||
def on_drag_data_received_event(self, widget, drag_context, x, y, selection_data, info, timestamp):
|
||||
args = []
|
||||
for uri in selection_data.data.split():
|
||||
args.append(urlparse(uri).path)
|
||||
args.append(urllib.unquote(urlparse(uri).path))
|
||||
process_args(args)
|
||||
drag_context.finish(True, True)
|
||||
|
|
Loading…
Reference in New Issue