Changed: #947 fixed set mouse pos in fullscreen on non main monitor

This commit is contained in:
rti 2010-06-13 22:36:32 +02:00
parent 207c648b88
commit ac758bc0e3

View file

@ -427,6 +427,10 @@ void setMousePos(float x, float y)
// get the rect (position, size) of the window
NSRect windowRect = [g_window frame];
if([g_glview isInFullScreenMode])
windowRect = [[g_window screen] frame];
else
windowRect = [g_window frame];
// get the gl view's rect for height and width
NSRect viewRect = [g_glview frame];