diff --git a/ChangeLog b/ChangeLog index 5affb9e52..d658cbd82 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-04-10 14:27-EDT Gregory John Casamento + + * Source/NSView.m: Autoresize subviews since it is not pulling it + from the nib correctly. Will come back and fix this issue. + 2009-04-10 14:05-EDT Gregory John Casamento * Source/NSSplitView.m: Autoresize subviews when loaded from the nib. diff --git a/Source/NSView.m b/Source/NSView.m index ac257b154..e97e3141e 100644 --- a/Source/NSView.m +++ b/Source/NSView.m @@ -4486,7 +4486,7 @@ static NSView* findByTag(NSView *view, int aTag, unsigned *level) // We are lucky here, Apple use the same constants // in the lower bits of the flags [self setAutoresizingMask: vFlags & 0x3F]; - [self setAutoresizesSubviews: ((vFlags & 0x100) == 0x100)]; + [self setAutoresizesSubviews: YES]; // ((vFlags & 0x100) == 0x100)]; [self setHidden: ((vFlags & 0x80000000) == 0x80000000)]; }