Stylistic fixes for -[NSAppearance effectiveAppearance]

This commit is contained in:
ethanc8 2024-02-05 15:27:03 -06:00
parent 9db91f702e
commit 12ca9f6996

View file

@ -3844,8 +3844,14 @@ struct _DelegateWrapper
}
- (NSAppearance*) effectiveAppearance {
if(_appearance) return _appearance;
else return [NSAppearance currentAppearance];
if (_appearance)
{
return _appearance;
}
else
{
return [NSAppearance currentAppearance];
}
}