mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-04 06:16:05 +01:00
Fix #2579 (Error when importing books by dragging onto the GUI)
This commit is contained in:
parent
b45a202c87
commit
640f059912
1 changed files with 1 additions and 1 deletions
|
|
@ -726,7 +726,7 @@ def dropEvent(self, event):
|
|||
paths = self.paths_from_event(event)
|
||||
event.setDropAction(Qt.CopyAction)
|
||||
event.accept()
|
||||
self.emit(SIGNAL('files_dropped(PyQt_PyObject)'), paths, Qt.QueuedConnection)
|
||||
self.emit(SIGNAL('files_dropped(PyQt_PyObject)'), paths)
|
||||
|
||||
|
||||
def set_database(self, db):
|
||||
|
|
|
|||
Loading…
Reference in a new issue