From 19622e976e787fc618d193f4742032d2bc29d401 Mon Sep 17 00:00:00 2001 From: IgorTimofeev Date: Tue, 2 Jan 2024 13:19:45 +0300 Subject: [PATCH] =?UTF-8?q?=D0=91=D0=BE=D0=B6=D0=B5,=20=D0=BD=D1=83=20?= =?UTF-8?q?=D0=B8=20=D0=BF=D0=BE=D0=B7=D0=BE=D1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Applications/MineCode IDE.app/Main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/MineCode IDE.app/Main.lua b/Applications/MineCode IDE.app/Main.lua index ea0ec34e..1ba70759 100755 --- a/Applications/MineCode IDE.app/Main.lua +++ b/Applications/MineCode IDE.app/Main.lua @@ -1380,7 +1380,7 @@ local function createEditOrRightClickMenu(menu) end local function checkScrollbar(y) - return not codeView.horizontalScrollBar.hidden or y >= codeView.y + codeView.height - 1 + return codeView.horizontalScrollBar.hidden or y >= codeView.y + codeView.height - 1 end local uptime = computer.uptime()