From bd3eeeb4b157f50ba60dcf6680af9898d1a54fed Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 6 Oct 2016 20:49:11 +0530 Subject: [PATCH] Fix #1630944 [limited number of TAGS](https://bugs.launchpad.net/calibre/+bug/1630944) --- src/calibre/gui2/metadata/basic_widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/metadata/basic_widgets.py b/src/calibre/gui2/metadata/basic_widgets.py index 2eb56b0036..43cfd29119 100644 --- a/src/calibre/gui2/metadata/basic_widgets.py +++ b/src/calibre/gui2/metadata/basic_widgets.py @@ -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)