From 4ac0f370979c3eb356b83e38f1ce498dae9595e5 Mon Sep 17 00:00:00 2001 From: Matthias Richter Date: Sat, 16 Jan 2016 02:35:12 +0100 Subject: [PATCH] Tweak theme: Larger space between checkbox and label --- theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme.lua b/theme.lua index 4930002..5d3601a 100644 --- a/theme.lua +++ b/theme.lua @@ -69,7 +69,7 @@ function theme.Checkbox(chk, opt, x,y,w,h) if chk.text then love.graphics.setFont(opt.font) y = y + theme.getVerticalOffsetForAlign(opt.valign, opt.font, h) - love.graphics.printf(chk.text, x + th+2, y, w - th+2, opt.align or "left") + love.graphics.printf(chk.text, x + h, y, w - h, opt.align or "left") end end