win32: Fix computation of the fullscreen size during stage realization

http://bugzilla.openedhand.com/show_bug.cgi?id=1905

Signed-off-by: Neil Roberts <neil@linux.intel.com>
This commit is contained in:
Samuel Degrande 2009-11-27 16:53:50 +01:00 committed by Neil Roberts
parent 12a9150f5b
commit 3d373c7278

View File

@ -442,7 +442,7 @@ clutter_stage_win32_realize (ClutterStageWindow *stage_window)
win_xpos = stage_win32->fullscreen_rect.left;
win_ypos = stage_win32->fullscreen_rect.top;
win_width = stage_win32->fullscreen_rect.right - win_xpos;
win_height = stage_win32->fullscreen_rect.left - win_ypos;
win_height = stage_win32->fullscreen_rect.bottom - win_ypos;
}
else
{