protected lookup(node: INode, type: Constructor<any>): any {
if (type === IGroupPaddingProvider) {
// use a custom padding provider that reserves space for the tab
return IGroupPaddingProvider.create(
() => new Insets(tabHeight + 4, 4, 4, 4)
)
}
return super.lookup(node, type)
}