mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-07 18:24:30 -04:00
Fix tag editor not working correctly in comma-separated is_multiple custom columns.
This commit is contained in:
parent
ebbdf4e704
commit
1079d689d1
@ -24,7 +24,8 @@ class TagEditor(QDialog, Ui_TagEditor):
|
||||
# Assume that if given a key then it is a custom column
|
||||
try:
|
||||
self.is_names = db.field_metadata[key]['display'].get('is_names', False)
|
||||
self.sep = '&'
|
||||
if self.is_names:
|
||||
self.sep = '&'
|
||||
except Exception:
|
||||
pass
|
||||
key = db.field_metadata.key_to_label(key)
|
||||
|
Loading…
x
Reference in New Issue
Block a user