Commit db8c66ce authored by Rafaël Carré's avatar Rafaël Carré

ncurses: fix search string display

parent 2c14f598
...@@ -1316,8 +1316,8 @@ static void Redraw(intf_thread_t *p_intf, time_t *t_last_refresh) ...@@ -1316,8 +1316,8 @@ static void Redraw(intf_thread_t *p_intf, time_t *t_last_refresh)
if (p_sys->i_box_type == BOX_SEARCH) if (p_sys->i_box_type == BOX_SEARCH)
{ {
DrawEmptyLine(p_sys->w, 7, 1, COLS-2); DrawEmptyLine(p_sys->w, 7, 1, COLS-2);
mvnprintw(7, 1, COLS-2, _("Find: %s"), *p_sys->psz_search_chain ? mvnprintw(7, 1, COLS-2, _("Find: %s"), p_sys->psz_old_search ?
p_sys->psz_search_chain : p_sys->psz_old_search); p_sys->psz_old_search : p_sys->psz_search_chain);
} }
if (p_sys->i_box_type == BOX_OPEN) if (p_sys->i_box_type == BOX_OPEN)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment