Summary: | Text in some documents exported from OOo 2.0 can't be selected | ||
---|---|---|---|
Product: | [Unmaintained] kpdf | Reporter: | Jerzy Kozera <jerzy.kozera> |
Component: | general | Assignee: | Albert Astals Cid <aacid> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | test.pdf, from which the text can't be copied |
Description
Jerzy Kozera
2005-05-13 22:17:19 UTC
Created attachment 11030 [details]
test.pdf, from which the text can't be copied
SVN commit 415187 by aacid: Call m_text->endPage() on KPDFOutputDev::endPage() when generating text Fixes bug 105630 BUGS: 105630 M +3 -0 trunk/KDE/kdegraphics/kpdf/core/generator_pdf/gp_outputdev.cpp --- trunk/KDE/kdegraphics/kpdf/core/generator_pdf/gp_outputdev.cpp #415186:415187 @@ -112,7 +112,10 @@ { SplashOutputDev::endPage(); if ( m_generateText ) + { + m_text->endPage(); m_text->coalesce( gTrue ); + } int bh = getBitmap()->getHeight(), bw = getBitmap()->getWidth(); |