From 640f059912fdb99d3d03bdb0e750848f0df5ea2d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 11 Jun 2009 12:42:39 -0700 Subject: [PATCH] Fix #2579 (Error when importing books by dragging onto the GUI) --- src/calibre/gui2/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/library.py b/src/calibre/gui2/library.py index 21583e8f98..e27ccba82f 100644 --- a/src/calibre/gui2/library.py +++ b/src/calibre/gui2/library.py @@ -726,7 +726,7 @@ class BooksView(TableView): 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):