Change the default font from Vera size 12 to Noto Sans size 13.

Resolves issue #1075.
This commit is contained in:
Alex Szpakowski
2020-02-17 01:55:49 -04:00
parent 7c34345fa6
commit ac524e681a
8 changed files with 21295 additions and 5516 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ int w_newTrueTypeRasterizer(lua_State *L)
if (lua_type(L, 1) == LUA_TNUMBER || lua_isnone(L, 1))
{
// First argument is a number: use the default TrueType font.
int size = (int) luaL_optinteger(L, 1, 12);
int size = (int) luaL_optinteger(L, 1, 13);
const char *hintstr = lua_isnoneornil(L, 2) ? nullptr : luaL_checkstring(L, 2);
if (hintstr && !TrueTypeRasterizer::getConstant(hintstr, hinting))