Квикфикс

This commit is contained in:
Igor Timofeev 2017-01-12 14:12:11 +03:00
parent b21f30538b
commit 28d4e22c07
3 changed files with 2 additions and 1 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -300,7 +300,7 @@
name="lib/GUI.lua",
url="IgorTimofeev/OpenComputers/master/lib/GUI.lua",
type="Library",
version=1.24,
version=1.25,
},
{
name="lib/windows.lua",

View File

@ -982,6 +982,7 @@ local function autocompleteVariables(sourceText)
end
local function inputFieldDraw(inputField)
if inputField.x < 1 or inputField.y < 1 or inputField.x + inputField.width - 1 > buffer.screen.width or inputField.y > buffer.screen.height then return inputField end
if inputField.oldPixels then
buffer.paste(inputField.x, inputField.y, inputField.oldPixels)
else