Ignore:
Timestamp:
May 2, 2002, 5:32:24 PM (23 years ago)
Author:
umoeller
Message:

Coupla dlg fixes I forgot.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/winh.c

    r159 r162  
    40454045 *@@changed V0.9.16 (2002-02-02) [umoeller]: fixed entry fields
    40464046 *@@changed V0.9.19 (2002-04-24) [umoeller]: removed ulDownUnits
     4047 *@@changed V0.9.19 (2002-05-02) [umoeller]: fix for combobox
    40474048 */
    40484049
     
    40914092                    CHAR szClass[10];
    40924093
    4093                     // check lowest y
    4094                     WinQueryWindowPos(hwndItem, pswpThis);
    4095                     if (pswpThis->y < yLowest)
    4096                         yLowest = pswpThis->y ;
    4097 
    40984094                    // special handling for entry fields
    40994095                    // V0.9.16 (2002-02-02) [umoeller]
     
    41044100                        pswpThis->y += 3 * WinQuerySysValue(HWND_DESKTOP, SV_CYBORDER);
    41054101                    }
     4102
     4103                    // check lowest y
     4104                    WinQueryWindowPos(hwndItem, pswpThis);
     4105                    if (    (pswpThis->y < yLowest)
     4106                         // ignore combobox, this will distort everything
     4107                         // AGAIN ... sigh V0.9.19 (2002-05-02) [umoeller]
     4108                         && (strcmp(szClass, "#2"))
     4109                       )
     4110                        yLowest = pswpThis->y ;
    41064111
    41074112                    ++pswpThis;
Note: See TracChangeset for help on using the changeset viewer.