From e1643289c5f656084d65a5ff41a1a7316f953940 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Sat, 7 Feb 2015 21:13:34 +0100 Subject: [PATCH] Cancel selection confirmation when following the selection --- src/sdtui.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sdtui.c b/src/sdtui.c index e3df5db..f6591e9 100644 --- a/src/sdtui.c +++ b/src/sdtui.c @@ -1297,8 +1297,9 @@ app_set_input (Application *self, const gchar *input) g_array_insert_val (self->input, self->input_pos++, *p++); } - g_free (output); + + self->input_confirmed = FALSE; app_search_for_entry (self); app_redraw_top (self); }