Skip to content

Commit

Permalink
fix: fix name of header font
Browse files Browse the repository at this point in the history
  • Loading branch information
ffainy committed Aug 2, 2022
1 parent 6d9f9ec commit 2401289
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/gui/gui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ local function CreateConsole(tabIndex)

local outline = _G.ANDROMEDA_ADB.FontOutline
local verStr = format('%s: %s', L['Version'], C.ADDON_VERSION)
F.CreateFS(guiFrame, C.ASSET_PATH .. 'fonts\\header.ttf', 22, outline, C.COLORFUL_ADDON_TITLE, nil, outline or 'THICK', 'TOP', 0, -4)
F.CreateFS(guiFrame, C.ASSET_PATH .. 'fonts\\suez-one.ttf', 22, outline, C.COLORFUL_ADDON_TITLE, nil, outline or 'THICK', 'TOP', 0, -4)
F.CreateFS(guiFrame, C.Assets.Fonts.Condensed, 10, outline, verStr, { 0.7, 0.7, 0.7 }, outline or 'THICK', 'TOP', 0, -30)

GUI:CreateGradientLine(guiFrame, 140, -70, -26, 70, -26)
Expand Down
2 changes: 1 addition & 1 deletion src/gui/help.lua
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ end

local function ConstructTextString(f)
local outline = _G.ANDROMEDA_ADB.FontOutline
f.title = F.CreateFS(f, C.ASSET_PATH .. 'fonts\\header.ttf', 56, outline, C.COLORFUL_ADDON_TITLE, nil, outline or 'THICK', 'TOP', 0, -C.UI_GAP)
f.title = F.CreateFS(f, C.ASSET_PATH .. 'fonts\\suez-one.ttf', 56, outline, C.COLORFUL_ADDON_TITLE, nil, outline or 'THICK', 'TOP', 0, -C.UI_GAP)
f.version = F.CreateFS(f, C.Assets.Fonts.Condensed, 12, outline, 'Version: ' .. C.ADDON_VERSION, { 0.7, 0.7, 0.7 }, outline or 'THICK', 'TOP', 0, -100)
f.tip = F.CreateFS(f, C.Assets.Fonts.Bold, 10, outline, strList.tip, { 0.3, 0.3, 0.3 }, outline or 'THICK', 'BOTTOM', 0, C.UI_GAP)

Expand Down
2 changes: 1 addition & 1 deletion src/gui/tutorial.lua
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function TUTORIAL:HelloWorld()
F.SetBD(f)

local outline = _G.ANDROMEDA_ADB.FontOutline
f.logo = F.CreateFS(f, C.ASSET_PATH .. 'fonts\\header.ttf', 22, outline, C.COLORFUL_ADDON_TITLE, nil, outline or 'THICK', 'TOP', 0, -4)
f.logo = F.CreateFS(f, C.ASSET_PATH .. 'fonts\\suez-one.ttf', 22, outline, C.COLORFUL_ADDON_TITLE, nil, outline or 'THICK', 'TOP', 0, -4)
f.desc = F.CreateFS(f, C.Assets.Fonts.Regular, 10, outline, 'installation', { 0.7, 0.7, 0.7 }, outline or 'THICK', 'TOP', 0, -30)

GUI:CreateGradientLine(f, 140, -70, -26, 70, -26)
Expand Down
2 changes: 1 addition & 1 deletion src/modules/misc/afk.lua
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ local function ConstructTextString(f)
)
f.timer = F.CreateFS(
f,
C.ASSET_PATH .. 'fonts\\header.ttf',
C.ASSET_PATH .. 'fonts\\suez-one.ttf',
56,
nil,
'timer',
Expand Down

0 comments on commit 2401289

Please sign in to comment.