Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Fixed font weight issue on error screen
Browse files Browse the repository at this point in the history
  • Loading branch information
essial committed Aug 16, 2022
1 parent 7d8ff9e commit 716698d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions screens/internal-error.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ local function initialize(data)
end
end
--/abyss-embedded/Hack-Regular.ttf
local f30 = abyss.createTtfFont('/abyss-embedded/Hack-Regular.ttf', math.floor(30 * 1.0), 'light')
local f15 = abyss.createTtfFont('/abyss-embedded/Hack-Regular.ttf', math.floor(15 * 1.0), 'light')
local f30 = abyss.createTtfFont('/abyss-embedded/Hack-Regular.ttf', math.floor(30 * 1.0), 'slight')
local f15 = abyss.createTtfFont('/abyss-embedded/Hack-Regular.ttf', math.floor(15 * 1.0), 'slight')

Label:new{
parent = rootNode,
Expand Down

0 comments on commit 716698d

Please sign in to comment.