Undo removal of space.

This commit is contained in:
Gregory John Casamento 2020-04-24 03:39:28 -04:00
parent 33e2bbd1f0
commit bd2372230f
2 changed files with 6 additions and 3 deletions

View file

@ -123,15 +123,17 @@ enum {
};
typedef NSUInteger NSCellStateValue;
#if OS_API_VERSION(MAC_OS_X_VERSION_10_13, GS_API_LATEST)
/*
* Control state values as of 10.13
*/
enum {
NSControlStateValueMixed = -1,
NSControlStateValueOff = 0,
NSControlStateValueOn = 1
NSControlStateValueMixed = -1,
NSControlStateValueOff = 0,
NSControlStateValueOn = 1
};
typedef NSUInteger NSControlStateValue;
#endif
/**
* <p>Enumeration of the ways that you can display an image in an

View file

@ -483,6 +483,7 @@
}
@end
@implementation GSTheme (LowLevelDrawing)