1
0
Fork 0

Tatsuhiro NISHIOKA: "enables osgviewer version of FlightGear to show

window frame, menubar, and Docks properly" (Mac OSX)
This commit is contained in:
mfranz 2008-03-12 12:38:54 +00:00
parent fcf92fdb57
commit e5c22e159f

View file

@ -148,10 +148,11 @@ void fgOSOpenWindow(int w, int h, int bpp,
traits->windowDecoration = true;
traits->width = w;
traits->height = h;
#ifdef WIN32
// Ugly Hack, why does CW_USEDEFAULT works like phase of the moon?
traits->x = 100;
traits->y = 100;
#if defined(WIN32) || defined(__APPLE__)
// Ugly Hack, why does CW_USEDEFAULT works like phase of the moon?
// Mac also needs this to show window frame, menubar and Docks
traits->x = 100;
traits->y = 100;
#endif
traits->supportsResize = true;
}