From 49b265eba4bef4df5c9da7e187d38a658adce9a3 Mon Sep 17 00:00:00 2001 From: brianp Date: Tue, 29 Jun 2004 15:50:57 +0000 Subject: [PATCH] give menu windows the title 'freeglut menu' (helps Chromium) git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@506 7f0cb862-5218-0410-a997-914c9d46530a --- freeglut/freeglut/src/freeglut_structure.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freeglut/freeglut/src/freeglut_structure.c b/freeglut/freeglut/src/freeglut_structure.c index 498dad3..3b3032d 100644 --- a/freeglut/freeglut/src/freeglut_structure.c +++ b/freeglut/freeglut/src/freeglut_structure.c @@ -150,7 +150,7 @@ SFG_Menu* fgCreateMenu( FGCBMenu menuCallback ) * Create a window for the menu to reside in. */ - fgCreateWindow( NULL, NULL, x, y, w, h, GL_FALSE, GL_TRUE ); + fgCreateWindow( NULL, "freeglut menu", x, y, w, h, GL_FALSE, GL_TRUE ); menu->Window = fgStructure.Window; glutDisplayFunc( fgDisplayMenu );