NSSplitViewInspector: fixed size, position, autosize; refuse first responder on matrix cells.

This commit is contained in:
Sergii Stoian 2019-12-21 13:48:29 +02:00
parent 602c427f74
commit 77b6ad3c68
3 changed files with 8 additions and 0 deletions

View file

@ -44,6 +44,14 @@
return self;
}
- (void)awakeFromNib
{
for (NSCell *cell in [orientation cells])
{
[cell setRefusesFirstResponder: YES];
}
}
- (void) _getValuesFromObject
{
BOOL state = [(NSSplitView *)object isVertical];