Merge c7d3670472
into fea45b2d5b
This commit is contained in:
commit
b33db671cd
|
@ -367,6 +367,8 @@ static void defaultOnPositionContentSizeChanged(uiWindow *w, void *data)
|
||||||
// do nothing
|
// do nothing
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static NSPoint lastTopLeftPoint;
|
||||||
|
|
||||||
uiWindow *uiNewWindow(const char *title, int width, int height, int hasMenubar)
|
uiWindow *uiNewWindow(const char *title, int width, int height, int hasMenubar)
|
||||||
{
|
{
|
||||||
uiWindow *w;
|
uiWindow *w;
|
||||||
|
@ -381,6 +383,13 @@ uiWindow *uiNewWindow(const char *title, int width, int height, int hasMenubar)
|
||||||
defer:YES];
|
defer:YES];
|
||||||
[w->window setTitle:uiprivToNSString(title)];
|
[w->window setTitle:uiprivToNSString(title)];
|
||||||
|
|
||||||
|
if (NSEqualPoints(lastTopLeftPoint, NSZeroPoint)) {
|
||||||
|
// issue "cascadeTopLeftFromPoint" twice on first time
|
||||||
|
// to have window position in a good place
|
||||||
|
lastTopLeftPoint = [w->window cascadeTopLeftFromPoint:lastTopLeftPoint];
|
||||||
|
}
|
||||||
|
lastTopLeftPoint = [w->window cascadeTopLeftFromPoint:lastTopLeftPoint];
|
||||||
|
|
||||||
// do NOT release when closed
|
// do NOT release when closed
|
||||||
// we manually do this in uiWindowDestroy() above
|
// we manually do this in uiWindowDestroy() above
|
||||||
[w->window setReleasedWhenClosed:NO];
|
[w->window setReleasedWhenClosed:NO];
|
||||||
|
|
Loading…
Reference in New Issue