mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-22 07:42:02 +00:00
Another fix for cursor movement up with big insets.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22252 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
62799a6707
commit
3b368687f9
@ -1673,7 +1673,7 @@ void BufferView::updateMetrics()
|
||||
int y1 = d->anchor_ypos_ - anchor_pm.ascent();
|
||||
// We are now just above the anchor paragraph.
|
||||
pit_type pit1 = d->anchor_pit_ - 1;
|
||||
for (; pit1 >= 0 && y1 > 0; --pit1) {
|
||||
for (; pit1 >= 0 && y1 >= 0; --pit1) {
|
||||
tm.redoParagraph(pit1);
|
||||
ParagraphMetrics & pm = tm.par_metrics_[pit1];
|
||||
y1 -= pm.descent();
|
||||
|
Loading…
x
Reference in New Issue
Block a user