Ignore:
Timestamp:
Oct 17, 1999, 8:09:22 PM (26 years ago)
Author:
sandervl
Message:

scrollbar fixes

File:
1 edited

Legend:

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

    r1333 r1342  
    1 /* $Id: scroll.cpp,v 1.9 1999-10-17 12:17:44 cbratschi Exp $ */
     1/* $Id: scroll.cpp,v 1.10 1999-10-17 18:09:22 sandervl Exp $ */
    22/*
    33 * Scrollbar control
     
    11331133            CONV_POINT16TO32( (POINT16 *)&lParam, &pt );
    11341134            SCROLL_HandleScrollEvent( hwnd, SB_HORZ, message, pt );
     1135            if(message == WM_MOUSEMOVE) {
     1136                return 1; //SvL: Let PM change the mouse cursor to the default
     1137            }
    11351138        }
    11361139        break;
     
    12081211            CONV_POINT16TO32( (POINT16 *)&lParam, &pt );
    12091212            SCROLL_HandleScrollEvent( hwnd, SB_VERT, message, pt );
     1213            if(message == WM_MOUSEMOVE) {
     1214                return 1; //SvL: Let PM change the mouse cursor to the default
     1215            }
    12101216        }
    12111217        break;
Note: See TracChangeset for help on using the changeset viewer.