diff options
-rw-r--r-- | edit.lua | 1 | ||||
-rw-r--r-- | source_edit.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/edit.lua b/edit.lua index d30dbdc..b9bd9c4 100644 --- a/edit.lua +++ b/edit.lua @@ -113,6 +113,7 @@ function edit.check_locs(State) or not edit.cursor_on_text(State) or not Text.le1(State.screen_top1, State.cursor1) then State.screen_top1 = {line=1, pos=1} + State.cursor1 = {line=1, pos=1} edit.put_cursor_on_next_text_line(State) end end diff --git a/source_edit.lua b/source_edit.lua index 506aa41..5c77758 100644 --- a/source_edit.lua +++ b/source_edit.lua @@ -115,6 +115,7 @@ function edit.check_locs(State) or not edit.cursor_on_text(State) or not Text.le1(State.screen_top1, State.cursor1) then State.screen_top1 = {line=1, pos=1} + State.cursor1 = {line=1, pos=1} edit.put_cursor_on_next_text_line(State) end end |