* Palettes/3Containers/inspectors.m: added missed method to return table column sizer class.

This commit is contained in:
Sergii Stoian 2019-12-27 00:56:45 +02:00
parent 570ee6cbba
commit 5511a423fc

View file

@ -53,10 +53,17 @@
@end
@implementation NSTableColumn (IBObjectAdditions)
- (NSString *) inspectorClassName
{
return @"GormTableColumnAttributesInspector";
}
- (NSString*) sizeInspectorClassName
{
return @"GormTableColumnSizeInspector";
}
@end
@implementation NSTableView (IBObjectAdditions)