Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/scene.c
Original file line number Diff line number Diff line change
Expand Up @@ -853,9 +853,14 @@ int createScene(pScene sc,int idmesh) {
}
sc->par.sunpos[3] = 1.0;

/* create window */
/* create window: It can be important for some users to set a
recognizable window title immediately, so that the window manager
sees it upon window creation and will be able to apply
application-specific user configurations on it. For example FVWM
Styles. In particular, FVWM only looks at it when the window is
created or when FVWM itself restarts. */
glutInitWindowSize(sc->par.xs,sc->par.ys);
sc->idwin = glutCreateWindow("");
sc->idwin = glutCreateWindow("Medit");
assert(sc->idwin != 0);
if ( fullscreen ) {
glutFullScreen();
Expand Down