mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-07 10:14:46 -04:00
Fix #1630944 [limited number of TAGS](https://bugs.launchpad.net/calibre/+bug/1630944)
This commit is contained in:
parent
92498c884b
commit
bd3eeeb4b1
@ -1275,7 +1275,7 @@ class TagsEdit(EditWithComplete, ToMetadataMixin): # {{{
|
|||||||
|
|
||||||
def __init__(self, parent):
|
def __init__(self, parent):
|
||||||
EditWithComplete.__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.books_to_refresh = set([])
|
||||||
self.setToolTip(self.TOOLTIP)
|
self.setToolTip(self.TOOLTIP)
|
||||||
self.setWhatsThis(self.TOOLTIP)
|
self.setWhatsThis(self.TOOLTIP)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user