Fullscreen an alt-tab on Windows

Monkey Targets Forums/Desktop/Fullscreen an alt-tab on Windows

Fly-Games(Posted 2012) [#1]
When game running on Full Screen (in glfw on all samples), alt-tab doesn't work.
Any ideas to fix it?
Monkey v1.60
GLFW_WINDOW_FULLSCREEN=TRUE


therevills(Posted 2012) [#2]
Works fine here on Windows 7...

What OS are you using?

Also could you try adding:
glfwEnable( GLFW_SYSTEM_KEYS );


To Monkey/targets/glfw/main.cpp - main method:

	glfwSetWindowPos( (desktopMode.Width-w)/2,(desktopMode.Height-h)/2 );	

	glfwSetWindowTitle( CFG_GLFW_WINDOW_TITLE );
	glfwEnable( GLFW_SYSTEM_KEYS ); // <<<<<<<<<< ADDED!!


Then delete your build folder and recompile for GLFW.