mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix #493
This commit is contained in:
parent
be071e930e
commit
7878bb85ed
@ -93,7 +93,7 @@ class TagEditor(QDialog, Ui_TagEditor):
|
|||||||
|
|
||||||
|
|
||||||
def unapply_tags(self, item=None):
|
def unapply_tags(self, item=None):
|
||||||
items = self.available_tags.selectedItems() if item is None else [item]
|
items = self.applied_tags.selectedItems() if item is None else [item]
|
||||||
for item in items:
|
for item in items:
|
||||||
tag = qstring_to_unicode(item.text())
|
tag = qstring_to_unicode(item.text())
|
||||||
self.tags.remove(tag)
|
self.tags.remove(tag)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user