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()