Changeset 25065 in webkit


Ignore:
Timestamp:
Aug 13, 2007 7:04:39 PM (17 years ago)
Author:
oliver
Message:

rs=sam

Correct accidentally modified code.

  • platform/mac/FontDataMac.mm: (WebCore::FontData::platformInit):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r25064 r25065  
     12007-08-13  Oliver Hunt  <oliver@apple.com>
     2
     3        rs=sam
     4
     5        Correct accidentally modified code.
     6
     7        * platform/mac/FontDataMac.mm:
     8        (WebCore::FontData::platformInit):
     9
    1102007-08-13  Adele Peterson  <adele@apple.com>
    211
  • trunk/WebCore/platform/mac/FontDataMac.mm

    r25063 r25065  
    184184    // Hack Hiragino line metrics to allow room for marked text underlines.
    185185    // <rdar://problem/5386183>
    186     if (m_descent < 3 && m_lineGap >= 2 && [familyName hasPrefix:@"Hiragino"]) {
     186    if (m_descent < 3 && m_lineGap >= 3 && [familyName hasPrefix:@"Hiragino"]) {
    187187        m_lineGap -= 3 - m_descent;
    188188        m_descent = 3;
Note: See TracChangeset for help on using the changeset viewer.