Changeset 10102 for trunk/src/user32/menu.c
- Timestamp:
- May 16, 2003, 11:21:00 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/menu.c
r10017 r10102 2732 2732 BOOL enterIdleSent = FALSE; 2733 2733 #ifdef __WIN32OS2__ 2734 BOOL bSysMenu = FALSE ;2734 BOOL bSysMenu = FALSE, bFirstMouseMove = TRUE; 2735 2735 #endif 2736 2736 … … 2922 2922 2923 2923 #ifdef __WIN32OS2__ 2924 if ( !fOS2Look || 2924 //PF Win32 eats first mousemove to prevent auto-select of item 2925 //on TrackMenuPopup pressed button - verified in Win2k 2926 if (bFirstMouseMove) 2927 { 2928 bFirstMouseMove = FALSE; 2929 break; 2930 } 2931 2932 if (!fOS2Look || 2925 2933 #else 2926 2934 if ( (TWEAK_WineLook > WIN31_LOOK) ||
Note:
See TracChangeset
for help on using the changeset viewer.