Changeset 301
- Timestamp:
- Oct 18, 2005, 1:18:22 AM (20 years ago)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1-0/src/helpers/cctl_tooltip.c
r297 r301 1049 1049 * 1050 1050 *@@added V0.9.13 (2001-06-21) [umoeller] 1051 *@@changed V1.0.4 (2005-10-15) [bvl]: Add 1 pixel to width of DBCS tooltip @@fixes 676 1051 1052 */ 1052 1053 … … 1070 1071 1071 1072 // calc width and height of tooltip 1073 // DBCS needs a extra pixel to show characters. 1072 1074 cx = rcl.xRight + 2*TOOLTIP_CX_BORDER; 1075 if (nlsDBCS()) 1076 cx++; 1077 1073 1078 cy = (rcl.yTop - rcl.yBottom) + 2*TOOLTIP_CY_BORDER; 1074 1079 -
trunk/src/helpers/cctl_tooltip.c
r297 r301 1044 1044 * 1045 1045 *@@added V0.9.13 (2001-06-21) [umoeller] 1046 *@@changed V1.0.4 (2005-10-15) [bvl]: Add 1 pixel to width of DBCS tooltip @@fixes 676 1046 1047 */ 1047 1048 … … 1065 1066 1066 1067 // calc width and height of tooltip 1068 // DBCS needs a extra pixel to show characters. 1067 1069 cx = rcl.xRight + 2*TOOLTIP_CX_BORDER; 1070 if (nlsDBCS()) 1071 cx++; 1072 1068 1073 cy = (rcl.yTop - rcl.yBottom) + 2*TOOLTIP_CY_BORDER; 1069 1074
Note:
See TracChangeset
for help on using the changeset viewer.