mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 02:04:20 +00:00
Fix clearing of soft-invalidated layout information if the invalidated range is beyond the last finished layout.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16011 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
85c5580808
commit
3abfc263a0
1 changed files with 1 additions and 1 deletions
|
@ -2045,7 +2045,7 @@ no_soft_invalidation:
|
|||
*/
|
||||
for (i = 0, tc = textcontainers; i < num_textcontainers; i++, tc++)
|
||||
{
|
||||
for (j = 0, lf = tc->linefrags + j; j < tc->num_soft; j++, lf++)
|
||||
for (j = 0, lf = tc->linefrags + tc->num_linefrags; j < tc->num_soft; j++, lf++)
|
||||
{
|
||||
if (lf->points)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue