mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix for the endless loop bug on wide tabulars.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5680 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c598fd2c9d
commit
d4ee5b69d0
@ -1,3 +1,8 @@
|
||||
2002-11-20 Juergen Vigna <jug@sad.it>
|
||||
|
||||
* insettabular.C (resetPos): temporary fix for endless loop in
|
||||
this function on a redraw.
|
||||
|
||||
2002-11-04 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||
|
||||
* insettabular.C (copySelection): STRCONV
|
||||
|
@ -1563,7 +1563,7 @@ void InsetTabular::resetPos(BufferView * bv) const
|
||||
#warning This should be fixed in the right manner (20011128 Jug)
|
||||
#endif
|
||||
// fast hack to fix infinite repaintings!
|
||||
if (in_reset_pos > 10)
|
||||
if (in_reset_pos > 0)
|
||||
return;
|
||||
|
||||
int cell = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user