View Single Post
08-09-16, 10:46 AM   #2
Aftermathhqt
A Molten Giant
 
Aftermathhqt's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 784
Originally Posted by melicon View Post
Hello again. I am trying to change the size of the comparison tooltip font.

I am currently using something I got off a forum to change other font sizes. Hoping I can just add something to change the comparison size as well?

Here is what I got from the forum..

Code:
for _, font in pairs({
    GameFontHighlight,

    GameFontDisable,

    GameFontHighlightExtraSmall,
    GameFontHighlightMedium,

    GameFontNormal,
    GameFontNormalSmall,

    --TextStatusBarText,

    GameFontDisableSmall,
    GameFontHighlightSmall,
	
	GameTooltipText,
}) do
    font:SetFont('Fonts\\ARIALN.ttf', 15)
    font:SetShadowOffset(2, -1)
end
 
TextStatusBarText:SetFont('Fonts\\ARIALN.ttf', 15, 'outline')
GameTooltipHeaderText:SetFont('Fonts\\ARIALN.ttf', 15)

for _, font in pairs({
    AchievementPointsFont,
    AchievementPointsFontSmall,
    AchievementDescriptionFont,
    AchievementCriteriaFont,
    AchievementDateFont,
	
}) do
    font:SetFont('Fonts\\ARIALN.ttf', 15)
end

GameFontNormalHuge:SetFont('Fonts\\ARIALN.ttf', 20, 'OUTLINE')
GameFontNormalHuge:SetShadowOffset(0, 0)
Try these

GameTooltipHeaderText
GameTooltipText
GameTooltipTextSmall

Last edited by Aftermathhqt : 08-09-16 at 10:49 AM.
  Reply With Quote