Changeset 10379 for trunk/src/user32/oslibwin.cpp
- Timestamp:
- Jan 11, 2004, 1:04:44 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r10284 r10379 1 /* $Id: oslibwin.cpp,v 1.14 5 2003-10-22 12:43:13sandervl Exp $ */1 /* $Id: oslibwin.cpp,v 1.146 2004-01-11 12:03:15 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 85 85 dwWinStyle = dwWinStyle & ~(WS_TABSTOP | WS_GROUP); 86 86 87 if(fTaskList )87 if(fTaskList || hwndParent == HWND_DESKTOP) 88 88 { 89 89 dwFrameStyle |= FCF_NOMOVEWITHOWNER; … … 280 280 swp[i].cx += minmaxwidth/2; 281 281 } 282 swp[i].cy = minmaxheight; 282 //one pixel more to let PM center the controls properly 283 swp[i].cy = minmaxheight+1; 283 284 swp[i].fl = SWP_SIZE | SWP_MOVE | SWP_SHOW; 284 285 dprintf(("FID_MINMAX (%d,%d)(%d,%d)", swp[i].x, swp[i].y, swp[i].cx, swp[i].cy));
Note:
See TracChangeset
for help on using the changeset viewer.