Changed uiGroup on OS X to properly use the NSBox content view. That doesn't fix things either...
This commit is contained in:
parent
190f9265a1
commit
7d252178b6
|
@ -43,7 +43,7 @@ static void groupRelayout(uiDarwinControl *c)
|
|||
// first relayout the child
|
||||
(*(cc->Relayout))(cc);
|
||||
// now relayout ourselves
|
||||
layoutSingleView(g->box, childView, g->margined);
|
||||
layoutSingleView([g->box contentView], childView, g->margined);
|
||||
}
|
||||
|
||||
char *uiGroupTitle(uiGroup *g)
|
||||
|
@ -71,7 +71,7 @@ void uiGroupSetChild(uiGroup *g, uiControl *child)
|
|||
if (g->child != NULL) {
|
||||
childView = (NSView *) uiControlHandle(g->child);
|
||||
uiControlSetParent(g->child, uiControl(g));
|
||||
[g->box addSubview:childView];
|
||||
[[g->box contentView] addSubview:childView];
|
||||
uiDarwinControlTriggerRelayout(uiDarwinControl(g));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue