mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-22 23:46:00 +01:00
Fix #1630944 [limited number of TAGS](https://bugs.launchpad.net/calibre/+bug/1630944)
This commit is contained in:
parent
92498c884b
commit
bd3eeeb4b1
1 changed files with 1 additions and 1 deletions
|
|
@ -1275,7 +1275,7 @@ class TagsEdit(EditWithComplete, ToMetadataMixin): # {{{
|
|||
|
||||
def __init__(self, parent):
|
||||
EditWithComplete.__init__(self, parent)
|
||||
self.lineEdit().setMaxLength(65536) # see https://bugs.launchpad.net/bugs/1569388
|
||||
self.lineEdit().setMaxLength(655360) # see https://bugs.launchpad.net/bugs/1630944
|
||||
self.books_to_refresh = set([])
|
||||
self.setToolTip(self.TOOLTIP)
|
||||
self.setWhatsThis(self.TOOLTIP)
|
||||
|
|
|
|||
Loading…
Reference in a new issue