Ignore:
Timestamp:
Oct 6, 1999, 12:36:39 PM (26 years ago)
Author:
dengert
Message:

adjust caret pos on window height change

File:
1 edited

Legend:

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

    r1114 r1154  
    1 /* $Id: pmwindow.cpp,v 1.14 1999-10-03 20:38:01 sandervl Exp $ */
     1/* $Id: pmwindow.cpp,v 1.15 1999-10-06 10:36:39 dengert Exp $ */
    22/*
    33 * Win32 Window Managment Code for OS/2
     
    330330               WinSetMultWindowPos(GetThreadHAB(), swp, i);
    331331        }
     332        if (yDelta != 0)
     333        {
     334            POINT pt;
     335            GetCaretPos (&pt);
     336            pt.y -= yDelta;
     337            SetCaretPos (pt.x, pt.y);
     338        }
    332339        win32wnd->MsgPosChanged((LPARAM)&wp);
    333340
Note: See TracChangeset for help on using the changeset viewer.