From 76c2a7ac1f06812d55ff4af4e62c7567b7ea86a1 Mon Sep 17 00:00:00 2001 From: gcasa Date: Fri, 10 Apr 2009 18:30:19 +0000 Subject: [PATCH] Minor correction to previous commit. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28200 72102866-910b-0410-8b05-ffd578937521 --- Source/NSView.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/NSView.m b/Source/NSView.m index e97e3141e..7d0c473fc 100644 --- a/Source/NSView.m +++ b/Source/NSView.m @@ -4489,6 +4489,10 @@ static NSView* findByTag(NSView *view, int aTag, unsigned *level) [self setAutoresizesSubviews: YES]; // ((vFlags & 0x100) == 0x100)]; [self setHidden: ((vFlags & 0x80000000) == 0x80000000)]; } + else + { + [self setAutoresizesSubviews: YES]; // ((vFlags & 0x100) == 0x100)]; + } // iterate over subviews and put them into the view... subs = [aDecoder decodeObjectForKey: @"NSSubviews"];