From c5b63235f03edf5eaae62b081335bb1f031e248c Mon Sep 17 00:00:00 2001 From: Edwin Leuven Date: Thu, 5 Nov 2009 19:51:17 +0000 Subject: [PATCH] reduce line noise git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31864 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/Cursor.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/Cursor.cpp b/src/Cursor.cpp index d8362e21d9..c51b6b94ba 100644 --- a/src/Cursor.cpp +++ b/src/Cursor.cpp @@ -1841,8 +1841,6 @@ bool Cursor::upDownInText(bool up, bool & updateNeeded) if (up) { if (row > 0) { --next_row; - top().pos() - = min(tm.x2pos(pit(), next_row, xo), top().lastpos()); } else if (pit() > 0) { --pit(); TextMetrics & tm = bv_->textMetrics(text()); @@ -1850,24 +1848,19 @@ bool Cursor::upDownInText(bool up, bool & updateNeeded) tm.newParMetricsUp(); ParagraphMetrics const & pmcur = tm.parMetrics(pit()); next_row = pmcur.rows().size() - 1; - top().pos() - = min(tm.x2pos(pit(), next_row, xo), top().lastpos()); } } else { if (row + 1 < int(pm.rows().size())) { ++next_row; - top().pos() - = min(tm.x2pos(pit(), next_row, xo), top().lastpos()); } else if (pit() + 1 < int(text()->paragraphs().size())) { ++pit(); TextMetrics & tm = bv_->textMetrics(text()); if (!tm.contains(pit())) tm.newParMetricsDown(); next_row = 0; - top().pos() - = min(tm.x2pos(pit(), next_row, xo), top().lastpos()); } } + top().pos() = min(tm.x2pos(pit(), next_row, xo), top().lastpos()); boundary(tm.x2pos(pit(), next_row, xo) == tm.x2pos(pit(), next_row, tm.width())); -- 2.39.2