From 66a089a07f4d24557cb8e06f78eefb07a344ea32 Mon Sep 17 00:00:00 2001 From: Matthias Richter Date: Wed, 11 Dec 2013 15:19:04 +0100 Subject: Fix bug in input.lua, make 0.9-ready, add utf8 editing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1) [input.lua] Pressing backspace while the cursor was at the beggining of the text removed the first character. Fixed thanks to riidom. 2) [LÖVE 0.9] Use setLine(Width|Style) instead of setLine. Split keyboard.pressed() into keyboard.pressed() and keyboard.textinput(). (see readme) 3) [utf8.lua] Add support for UTF-8 text editing. May still fail spectacurlarly with invalid UTF-8 strings. --- core.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core.lua') diff --git a/core.lua b/core.lua index cbccbae..42b1ae1 100644 --- a/core.lua +++ b/core.lua @@ -99,7 +99,8 @@ local function draw() for i = 1,draw_items.n do draw_items[i]() end -- restore graphics state - love.graphics.setLine(lw, ls) + love.graphics.setLineWidth(lw) + love.graphics.setLineStyle(ls) if f then love.graphics.setFont(f) end love.graphics.setColor(c) -- cgit v1.2.3-54-g00ecf