From c02ae779cc163b0426d5111acbe68739266d4c55 Mon Sep 17 00:00:00 2001 From: hhiptmair Date: Mon, 2 May 2016 09:57:25 +0200 Subject: [PATCH] fixed font size bug, issue #162 --- js/view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/view.js b/js/view.js index aeecc81da..a31e9af9f 100644 --- a/js/view.js +++ b/js/view.js @@ -6,7 +6,7 @@ function easeOutCubic(t, b, c, d) { function renderText(x, y, fontSize, color, text, font) { ctx.save(); if (!font) { - var font = '20px Exo'; + var font = 'px Exo'; } fontSize *= settings.scale;