1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-08-30 17:17:55 +00:00

Merge pull request #742 from Wojbie/edit-fix

Fix missing `term.setCursorBlink(true)` in edit.lua
This commit is contained in:
Jonathan Coates
2021-03-19 16:48:34 +00:00
committed by GitHub

View File

@@ -801,6 +801,7 @@ while bRunning do
end end
else else
bMenu = false bMenu = false
term.setCursorBlink(true)
redrawMenu() redrawMenu()
end end
end end