Changeset 162 for trunk/src/helpers/winh.c
- Timestamp:
- May 2, 2002, 5:32:24 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/winh.c
r159 r162 4045 4045 *@@changed V0.9.16 (2002-02-02) [umoeller]: fixed entry fields 4046 4046 *@@changed V0.9.19 (2002-04-24) [umoeller]: removed ulDownUnits 4047 *@@changed V0.9.19 (2002-05-02) [umoeller]: fix for combobox 4047 4048 */ 4048 4049 … … 4091 4092 CHAR szClass[10]; 4092 4093 4093 // check lowest y4094 WinQueryWindowPos(hwndItem, pswpThis);4095 if (pswpThis->y < yLowest)4096 yLowest = pswpThis->y ;4097 4098 4094 // special handling for entry fields 4099 4095 // V0.9.16 (2002-02-02) [umoeller] … … 4104 4100 pswpThis->y += 3 * WinQuerySysValue(HWND_DESKTOP, SV_CYBORDER); 4105 4101 } 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 ; 4106 4111 4107 4112 ++pswpThis;
Note:
See TracChangeset
for help on using the changeset viewer.