*** empty log message ***

svn path=/trunk/boinc/; revision=8040
This commit is contained in:
Rom Walton 2005-09-16 23:28:28 +00:00
parent 72326a12e6
commit 98d879e1a7
2 changed files with 12 additions and 0 deletions

View File

@ -162,6 +162,11 @@ static void make_new_window() {
return;
}
// use client area for resize when not fullscreen
if (current_graphics_mode != MODE_FULLSCREEN) {
GetClientRect(hWnd, &WindowRect);
}
width = WindowRect.right-WindowRect.left;
height = WindowRect.bottom-WindowRect.top;

View File

@ -11839,3 +11839,10 @@ Rom 16 Sept 2005 (from Walt Gribben)
windows_opengl.C
win_build/
libboincapi.vcproj
Rom 16 Sept 2005 (from Walt Gribben)
- Use the client area of the window instead of the window size when drawing
graphics on Windows.
api/
windows_opengl.C