mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Dont show the merge books popup when dropping a book onto itself.
Fixes #1777054 [Merge books keeps popping up](https://bugs.launchpad.net/calibre/+bug/1777054)
This commit is contained in:
parent
fe63b2fde8
commit
3a6fd2bf0d
@ -219,7 +219,7 @@ def dropEvent(self, event):
|
|||||||
row = self.indexAt(event.pos()).row()
|
row = self.indexAt(event.pos()).row()
|
||||||
if row > -1 and ids:
|
if row > -1 and ids:
|
||||||
book_id = self.model().id(row)
|
book_id = self.model().id(row)
|
||||||
if book_id:
|
if book_id and book_id not in ids:
|
||||||
self.books_dropped.emit({book_id: ids})
|
self.books_dropped.emit({book_id: ids})
|
||||||
event.setDropAction(Qt.CopyAction)
|
event.setDropAction(Qt.CopyAction)
|
||||||
event.accept()
|
event.accept()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user