diff --git a/src/bin/edit/draw_editor.rs b/src/bin/edit/draw_editor.rs index 69713a7d6309..a0047bf15ea9 100644 --- a/src/bin/edit/draw_editor.rs +++ b/src/bin/edit/draw_editor.rs @@ -300,6 +300,7 @@ pub fn draw_goto_menu(ctx: &mut Context, state: &mut State) { match validate_goto_point(&state.goto_target) { Ok(point) => { buf.cursor_move_to_logical(point); + buf.make_cursor_visible(); done = true; } Err(_) => state.goto_invalid = true,