hide editor cursor while in file navigator
[?]
Sep 18, 2022, 8:32 AM
B4JEWKWIFIOJ7MIWNDPR3L34NIH4WORBELAWFOPAMWL32SVIJ4YQCDependencies
- [2]
OI4FPFINsupport drawings in the source editor - [3]
KMSL74GAsupport selections in the source editor - [4]
ZJOSQFN6bugfix: path munging on Windows - [5]
KKMFQDR4editing source code from within the app - [6]
4VQGE7RAnew test - [7]
BYKXF3YYbugfix: draw menu after everything else
Change contents
- replacement in source_text.lua at line 7
function Text.draw(State, line_index, y, startpos, startposB)function Text.draw(State, line_index, y, startpos, startposB, hide_cursor) - replacement in source_text.lua at line 21
if State.search_term == nil thenif not hide_cursor and not State.search_term then - replacement in source_text.lua at line 67
if State.search_term == nil thenif not hide_cursor and not State.search_term then - replacement in source_edit.lua at line 127
function edit.draw(State)function edit.draw(State, hide_cursor) - replacement in source_edit.lua at line 173
y, State.screen_bottom1.pos, State.screen_bottom1.posB = Text.draw(State, line_index, y, startpos, startposB)y, State.screen_bottom1.pos, State.screen_bottom1.posB = Text.draw(State, line_index, y, startpos, startposB, hide_cursor) - replacement in source.lua at line 225
edit.draw(Editor_state)edit.draw(Editor_state, --[[hide cursor?]] Show_file_navigator)