mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
Stylistic fixes for -[NSAppearance effectiveAppearance]
This commit is contained in:
parent
9db91f702e
commit
12ca9f6996
1 changed files with 8 additions and 2 deletions
|
@ -3844,8 +3844,14 @@ struct _DelegateWrapper
|
|||
}
|
||||
|
||||
- (NSAppearance*) effectiveAppearance {
|
||||
if(_appearance) return _appearance;
|
||||
else return [NSAppearance currentAppearance];
|
||||
if (_appearance)
|
||||
{
|
||||
return _appearance;
|
||||
}
|
||||
else
|
||||
{
|
||||
return [NSAppearance currentAppearance];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue