From e0c74b09b53c9e80cea0c7c9cf575f6304a24e7a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 5 Dec 2008 19:10:39 -0800 Subject: [PATCH] Revert fix in previous release that can cause generation of invalid LRF files in some circumstances --- src/calibre/ebooks/lrf/pylrs/pylrs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/ebooks/lrf/pylrs/pylrs.py b/src/calibre/ebooks/lrf/pylrs/pylrs.py index 60f8d21336..081c5a5179 100644 --- a/src/calibre/ebooks/lrf/pylrs/pylrs.py +++ b/src/calibre/ebooks/lrf/pylrs/pylrs.py @@ -1432,7 +1432,7 @@ class Page(LrsObject, LrsContainer): #print "page contents:", pageContent # ObjectList not needed and causes slowdown in SONY LRF renderer - #p.appendLrfTag(LrfTag("ObjectList", pageContent)) + p.appendLrfTag(LrfTag("ObjectList", pageContent)) p.appendLrfTag(LrfTag("Link", self.pageStyle.objId)) p.appendLrfTag(LrfTag("ParentPageTree", lrfWriter.getPageTreeId())) p.appendTagDict(self.settings)