mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +00:00
Fix the multiple window rows() availability bug
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16273 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
fb5b1bc6c8
commit
74602628f6
@ -577,3 +577,8 @@ CREDITS:
|
||||
* LyX tries to delete /tmp if it is called with invalid arguments
|
||||
FIXED (Enrico 2006-12-13)
|
||||
|
||||
* Start lyx, open a document, scroll down, open a new window, move
|
||||
the cursor back, lyx crashes because par::rows() is cleared when the
|
||||
new window is created.
|
||||
FIXED (Bo 2006-12-13)
|
||||
|
||||
|
@ -999,6 +999,12 @@ InsetBase * LyXText::editXY(LCursor & cur, int x, int y)
|
||||
}
|
||||
pit_type pit = getPitNearY(cur.bv(), y);
|
||||
BOOST_ASSERT(pit != -1);
|
||||
// When another window is opened with the same document, rows()
|
||||
// will be cleared so pars_[pit].rows() might be empty when switching
|
||||
// between windwos. A better solution is that each buffer view
|
||||
// has its own rows() for the same buffer.
|
||||
if (pars_[pit].rows().empty())
|
||||
redoParagraph(cur.bv(), pit);
|
||||
Row const & row = getRowNearY(cur.bv(), y, pit);
|
||||
bool bound = false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user