Ignore:
Timestamp:
Jan 11, 2004, 1:04:44 PM (22 years ago)
Author:
sandervl
Message:

Update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/oslibwin.cpp

    r10284 r10379  
    1 /* $Id: oslibwin.cpp,v 1.145 2003-10-22 12:43:13 sandervl Exp $ */
     1/* $Id: oslibwin.cpp,v 1.146 2004-01-11 12:03:15 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    8585    dwWinStyle = dwWinStyle & ~(WS_TABSTOP | WS_GROUP);
    8686
    87     if(fTaskList)
     87    if(fTaskList || hwndParent == HWND_DESKTOP)
    8888    {
    8989        dwFrameStyle |= FCF_NOMOVEWITHOWNER;
     
    280280              swp[i].cx += minmaxwidth/2;
    281281          }
    282           swp[i].cy = minmaxheight;
     282          //one pixel more to let PM center the controls properly
     283          swp[i].cy = minmaxheight+1;
    283284          swp[i].fl = SWP_SIZE | SWP_MOVE | SWP_SHOW;
    284285          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.