From 16bf7cbae89ee0d1e554a0f40a60c9b15f770249 Mon Sep 17 00:00:00 2001 From: Lorenzo Cogotti Date: Sun, 2 Oct 2022 18:53:00 +0200 Subject: [PATCH] [input] Reduce overlong text margin. --- input.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input.lua b/input.lua index 07dda69..77106b0 100644 --- a/input.lua +++ b/input.lua @@ -206,7 +206,7 @@ function Input:draw() -- Set scissors local sx, sy, sw, sh = love.graphics.getScissor() - love.graphics.setScissor(x-1,y,w+2,h) + love.graphics.setScissor(x-1,y,w+1,h) -- Move to focused text box region x = x - self.drawofs