From db4c4957a3108cddbe5ff41d5748fa05cc020126 Mon Sep 17 00:00:00 2001 From: Alexander Malmberg Date: Tue, 18 Feb 2003 17:24:24 +0000 Subject: [PATCH] Minor fix of previous commit: make sure layout is marked as incomplete even if no actual layout was invalidated. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@15998 72102866-910b-0410-8b05-ffd578937521 --- Source/NSLayoutManager.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/NSLayoutManager.m b/Source/NSLayoutManager.m index 587574b82..f0880797d 100644 --- a/Source/NSLayoutManager.m +++ b/Source/NSLayoutManager.m @@ -2055,6 +2055,10 @@ no_soft_invalidation: } } tc->num_soft = 0; + if (tc->pos + tc->length == r.location) + { + tc->complete = NO; + } } }