mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Improve painting debug info.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19970 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
aef5a7b9f7
commit
4ed011dbd1
@ -1554,12 +1554,14 @@ void BufferView::draw(frontend::Painter & pain)
|
||||
|
||||
int yy = metrics_info_.y1;
|
||||
// draw contents
|
||||
LYXERR(Debug::PAINTING) << "\t\t*** START DRAWING ***" << endl;
|
||||
for (pit_type pit = metrics_info_.p1; pit <= metrics_info_.p2; ++pit) {
|
||||
ParagraphMetrics const & pm = tm.parMetrics(pit);
|
||||
yy += pm.ascent();
|
||||
tm.drawParagraph(pi, pit, 0, yy);
|
||||
yy += pm.descent();
|
||||
}
|
||||
LYXERR(Debug::PAINTING) << "\n\t\t*** END DRAWING ***" << endl;
|
||||
|
||||
// and grey out above (should not happen later)
|
||||
// lyxerr << "par ascent: " << text.getPar(metrics_info_.p1).ascent() << endl;
|
||||
|
@ -1037,8 +1037,8 @@ void TextMetrics::drawParagraph(PainterInfo & pi, pit_type pit, int x, int y) co
|
||||
// 12 lines lower):
|
||||
if (lyxerr.debugging(Debug::PAINTING)) {
|
||||
if (text_->isMainText(bv_->buffer()))
|
||||
LYXERR(Debug::PAINTING) << "\n{" <<
|
||||
pi.full_repaint << row_has_changed << "} ";
|
||||
LYXERR(Debug::PAINTING) << "{" <<
|
||||
pi.full_repaint << row_has_changed << "}\n";
|
||||
else
|
||||
LYXERR(Debug::PAINTING) << "[" <<
|
||||
pi.full_repaint << row_has_changed << "]";
|
||||
|
Loading…
Reference in New Issue
Block a user