Ignore:
Timestamp:
Apr 11, 2003, 7:26:11 PM (22 years ago)
Author:
sandervl
Message:

MENU_TrackKbdMenuBar: check for WS_EX_TOOLWINDOW before using the system menu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/menu.c

    r9988 r10017  
    31743174    {
    31753175        if (!(GetWindowLongA( hwnd, GWL_STYLE ) & WS_SYSMENU)) return;
     3176#ifdef __WIN32OS2__
     3177        if ((GetWindowLongA( hwnd, GWL_EXSTYLE ) & WS_EX_TOOLWINDOW)) return;
     3178#endif
    31763179        hTrackMenu = get_win_sys_menu( hwnd );
    31773180        uItem = 0;
Note: See TracChangeset for help on using the changeset viewer.