Commit cda63044 authored by Yoann Peronneau's avatar Yoann Peronneau

* modules/gui/ncurses.c: Fixed a bug due to the new 'Volume' line.

parent 7b5e02f6
...@@ -957,6 +957,7 @@ static void Redraw ( intf_thread_t *p_intf, time_t *t_last_refresh ) ...@@ -957,6 +957,7 @@ static void Redraw ( intf_thread_t *p_intf, time_t *t_last_refresh )
mvnprintw( y++, 0, COLS, "Source: <no current item>" ); mvnprintw( y++, 0, COLS, "Source: <no current item>" );
DrawEmptyLine( p_sys->w, y++, 0, COLS ); DrawEmptyLine( p_sys->w, y++, 0, COLS );
DrawEmptyLine( p_sys->w, y++, 0, COLS ); DrawEmptyLine( p_sys->w, y++, 0, COLS );
DrawEmptyLine( p_sys->w, y++, 0, COLS );
} }
DrawBox( p_sys->w, y, 0, 3, COLS, "" ); DrawBox( p_sys->w, y, 0, 3, COLS, "" );
...@@ -1192,27 +1193,27 @@ static void Redraw ( intf_thread_t *p_intf, time_t *t_last_refresh ) ...@@ -1192,27 +1193,27 @@ 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, 6, 1, COLS-2 ); DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
if( p_sys->psz_search_chain ) if( p_sys->psz_search_chain )
{ {
if( strlen( p_sys->psz_search_chain ) == 0 && if( strlen( p_sys->psz_search_chain ) == 0 &&
p_sys->psz_old_search != NULL ) p_sys->psz_old_search != NULL )
{ {
/* Searching next entry */ /* Searching next entry */
mvnprintw( 6, 1, COLS-2, "Find: %s", p_sys->psz_old_search ); mvnprintw( 7, 1, COLS-2, "Find: %s", p_sys->psz_old_search );
} }
else else
{ {
mvnprintw( 6, 1, COLS-2, "Find: %s", p_sys->psz_search_chain ); mvnprintw( 7, 1, COLS-2, "Find: %s", p_sys->psz_search_chain );
} }
} }
} }
if( p_sys->i_box_type == BOX_OPEN ) if( p_sys->i_box_type == BOX_OPEN )
{ {
DrawEmptyLine( p_sys->w, 6, 1, COLS-2 );
if( p_sys->psz_open_chain ) if( p_sys->psz_open_chain )
{ {
mvnprintw( 6, 1, COLS-2, "Open: %s", p_sys->psz_open_chain ); DrawEmptyLine( p_sys->w, 7, 1, COLS-2 );
mvnprintw( 7, 1, COLS-2, "Open: %s", p_sys->psz_open_chain );
} }
} }
......
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