diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-02-07 21:13:34 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-02-07 21:13:34 +0100 |
commit | e1643289c5f656084d65a5ff41a1a7316f953940 (patch) | |
tree | 02a75640403f4056bf5b365c8f187dd44e7781a5 /src/sdtui.c | |
parent | a9bc1d87513c9d5cf0e45159f44d8b5dc7c9faa8 (diff) | |
download | tdv-e1643289c5f656084d65a5ff41a1a7316f953940.tar.gz tdv-e1643289c5f656084d65a5ff41a1a7316f953940.tar.xz tdv-e1643289c5f656084d65a5ff41a1a7316f953940.zip |
Cancel selection confirmation when following the selection
Diffstat (limited to 'src/sdtui.c')
-rw-r--r-- | src/sdtui.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); } |