bugfix: refresh screen when closing first column

This commit is contained in:
Kartik K. Agaram 2022-08-08 11:04:25 -07:00
parent 065c613408
commit c0b9bf0975

View File

@ -453,9 +453,9 @@ function command.close_column_surrounding_cursor()
if Cursor_pane.col > 1 then
Cursor_pane.col = Cursor_pane.col - 1
Cursor_pane.row = 1
bring_cursor_column_on_screen()
plan_draw()
end
bring_cursor_column_on_screen()
plan_draw()
end
function command.edit_note()