mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 18:11:06 +00:00
Add call to setter as suggested by @fredkiefer
This commit is contained in:
parent
79fd2c8c43
commit
345b1b4065
1 changed files with 2 additions and 2 deletions
|
@ -4752,7 +4752,7 @@ static NSView* findByTag(NSView *view, NSInteger aTag, NSUInteger *level)
|
|||
// Decode the shadow...
|
||||
if ([aDecoder containsValueForKey: @"NSViewShadow"])
|
||||
{
|
||||
_shadow = RETAIN([aDecoder decodeObjectForKey: @"NSViewShadow"]);
|
||||
[self setShadow: [aDecoder decodeObjectForKey: @"NSViewShadow"]];
|
||||
}
|
||||
|
||||
// the superview...
|
||||
|
@ -4821,7 +4821,7 @@ static NSView* findByTag(NSView *view, NSInteger aTag, NSUInteger *level)
|
|||
// Decode the shadow if this is version 2 or greater...
|
||||
if (version >= 2)
|
||||
{
|
||||
_shadow = RETAIN([aDecoder decodeObject]);
|
||||
[self setShadow: [aDecoder decodeObject]];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue