mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 22:53:38 +02:00
Fix #1881396 [[Enhancement] In the Tag browser context menu ' is used as an](https://bugs.launchpad.net/calibre/+bug/1881396)
This commit is contained in:
parent
50a19e2b75
commit
19de299830
1 changed files with 1 additions and 1 deletions
|
|
@ -562,7 +562,7 @@ def display_name(tag):
|
|||
n = tag.name
|
||||
if len(n) > 45:
|
||||
n = n[:45] + '...'
|
||||
ans = "'" + n + "'"
|
||||
ans = n
|
||||
elif tag.is_hierarchical and not tag.is_editable:
|
||||
ans = tag.original_name
|
||||
if ans:
|
||||
|
|
|
|||
Loading…
Reference in a new issue