Changeset 9619 for trunk/src


Ignore:
Timestamp:
Jan 5, 2003, 2:46:56 PM (23 years ago)
Author:
sandervl
Message:

DT: Return MA_NOACTIVATE in listbox WM_MOUSEACTIVATE handler

File:
1 edited

Legend:

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

    r9549 r9619  
    29612961    case WM_VSCROLL:
    29622962        return LISTBOX_HandleVScroll( hwnd, descr, wParam );
     2963#ifdef __WIN32OS2__
     2964    //TODO: Apparently not necessary in Wine
     2965    //      Not includding it causes a focus problem in e.g. the file dialog
     2966    //      (click on drop down listbox button, click again; focus not restored
     2967    //       to the dialog)
     2968    case WM_MOUSEACTIVATE:
     2969        return MA_NOACTIVATE;
     2970#endif
    29632971    case WM_MOUSEWHEEL:
    29642972        if (wParam & (MK_SHIFT | MK_CONTROL))
Note: See TracChangeset for help on using the changeset viewer.