From 605237703bf7b50951ee152337f4f533bd1dbf18 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Wed, 11 Jul 2012 00:01:00 -0400 Subject: [PATCH] draw the selection cursor when entering the mode --- termite.c | 1 + 1 file changed, 1 insertion(+) diff --git a/termite.c b/termite.c index 67bbcd4..78c4181 100644 --- a/termite.c +++ b/termite.c @@ -120,6 +120,7 @@ static void start_selection(VteTerminal *vte, select_info *select) { feed_str(vte, CSI "?25l"); // hide cursor select->mode = SELECT_ON; vte_terminal_get_cursor_position(vte, &select->cursor_col, &select->cursor_row); + update_selection(vte, select); } static void end_selection(VteTerminal *vte, select_info *select) {