Ignore:
Timestamp:
Jan 4, 2003, 1:21:44 PM (23 years ago)
Author:
sandervl
Message:

fix for alt key & menu activation; fixed color of highlighted menubar item

File:
1 edited

Legend:

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

    r9590 r9607  
    1 /* $Id: win32wbase.cpp,v 1.350 2003-01-02 17:02:05 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.351 2003-01-04 12:21:44 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    18911891    }
    18921892
     1893    case WM_KEYDOWN:
     1894        if(wParam == VK_F10) iF10Key = VK_F10;
     1895        break;
     1896
    18931897    case WM_SYSKEYDOWN:
    18941898    {
     
    19992003        if (((wParam == VK_MENU) && iMenuSysKey) ||
    20002004            ((wParam == VK_F10) && iF10Key))
    2001               ::SendMessageW( GetTopWindow(), WM_SYSCOMMAND, SC_KEYMENU, 0L );
     2005              ::SendMessageW( GetTopParent(), WM_SYSCOMMAND, SC_KEYMENU, 0L );
    20022006        iMenuSysKey = iF10Key = 0;
    20032007        break;
Note: See TracChangeset for help on using the changeset viewer.