Skip to content

Commit 1436f10

Browse files
committed
COMMON: don't try to grab the mouse by default
1 parent 02ce02f commit 1436f10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/common/ConfigManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void ConfigManager::init (IBindingSpaceListener *bindingSpaceListener, int argc,
8383
#endif
8484
_vsync = getConfigValue(_configVarMap, "vsync", "true");
8585
_textureSize = getConfigValue(_configVarMap, "texturesize", "auto");
86-
_grabMouse = getConfigValue(_configVarMap, "grabmouse", "true");
86+
_grabMouse = getConfigValue(_configVarMap, "grabmouse", "false");
8787
_soundEngine = getConfigValue(_configVarMap, "soundengine", "sdl");
8888
_particles = getConfigValue(_configVarMap, "particles", "0");
8989
_renderToTexture = getConfigValue(_configVarMap, "rendertotexture", "1");

0 commit comments

Comments
 (0)