Добавил возможность вставки из буфера путем нажатия СКМ в инструменте "текст", полезно для спец. символов.

This commit is contained in:
Igor Timofeev 2015-09-17 22:53:14 +03:00
parent 8c39fa23a3
commit d56cedb616

View File

@ -690,6 +690,14 @@ local function inputText(x,y,limit,textColor)
drawThisShit()
end
end
elseif e[1] == "clipboard" then
if e[3] then
text = text .. e[3]
if unicode.len(text) < limit then
inputPos = inputPos + 1
end
drawThisShit()
end
end
end