Adium

Changeset 23031

Show
Ignore:
Timestamp:
04/03/2008 11:03:27 AM (8 months ago)
Author:
evands
Message:

Enabling colors when encoding HTML should not change whether we include size tags; that is determined by whether we want font information. Fixes #9523

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Frameworks/Adium Framework/Source/AIHTMLDecoder.m

    r22828 r23031  
    337337 
    338338                        //Size 
    339                         if (!thingsToInclude.simpleTagsOnly) { 
     339                        if (thingsToInclude.fontTags && font && !thingsToInclude.simpleTagsOnly) { 
    340340                                [string appendString:[NSString stringWithFormat:@" ABSZ=%i SIZE=%i", (int)pointSize, HTMLEquivalentForFontSize((int)pointSize)]]; 
    341341                                currentSize = pointSize;