Re: Löve Frames - A GUI Library
Posted: Fri Mar 21, 2014 5:21 pm
Hi there !
I have an issue with the text input object. Each time I put my mouse on the text input field I got the same error :
It seems to come from textinput.lua
on the line 142
How can I fix this ?
I have an issue with the text input object. Each time I put my mouse on the text input field I got the same error :
Code: Select all
Error: Could not open file ibeam. Does not exist.
Code: Select all
if version == "0.9.0" then
local cursorset = self.cursorset
if hover then
if not cursorset then
local curcursor = love.mouse.getCursor()
local newcursor = love.mouse.newCursor("ibeam")
love.mouse.setCursor(newcursor)
self.prevcursor = curcursor
self.cursorset = true
end
else
if cursorset then
local prevcursor = self.prevcursor
love.mouse.setCursor(prevcursor)
self.cursorset = false
end
end
end
Code: Select all
local newcursor = love.mouse.newCursor("ibeam")