* Source/NSSwitch.m (-drawRect:): Correct drawing as suggested by Austin Clow (dr_clow@me.com).

This commit is contained in:
Fred Kiefer 2023-08-13 20:27:48 +02:00
parent 305bcd56a3
commit 570f2b4d2a
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2023-08-13 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSSwitch.m (-drawRect:): Correct drawing as suggested by
Austin Clow (dr_clow@me.com).
2023-02-12 Gregory John Casamento <greg.casamento@gmail.com>
* Source/NSCollectionView.m: Implementation of methods

View file

@ -149,7 +149,7 @@
- (void) drawRect: (NSRect)rect
{
[[GSTheme theme] drawSwitchInRect: rect
[[GSTheme theme] drawSwitchInRect: [self bounds]
forState: _state
enabled: [self isEnabled]];
}