comparison src/xfaces.c @ 37798:d4b4c850abc0

(xlfd_point_size): Don't divide pixel size from transformation matrix by 10.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 18 May 2001 11:06:40 +0000
parents 2cea00ea4d76
children a86234ceb517
comparison
equal deleted inserted replaced
37797:d0c11ec0421d 37798:d4b4c850abc0
2146 { 2146 {
2147 matrix[i] = strtod (start, &end); 2147 matrix[i] = strtod (start, &end);
2148 start = end; 2148 start = end;
2149 } 2149 }
2150 2150
2151 pixel = matrix[3] / 10.0; 2151 pixel = matrix[3];
2152 } 2152 }
2153 else 2153 else
2154 pixel = atoi (pixel_field); 2154 pixel = atoi (pixel_field);
2155 2155
2156 if (pixel == 0) 2156 if (pixel == 0)