Commit 17f19ed3 authored by Rafaël Carré's avatar Rafaël Carré

Displays playlist names using UTF8

parent ffdcdf8a
......@@ -194,7 +194,8 @@ void PLItem::update( playlist_item_t *p_item, bool iscurrent )
if( model->i_depth == 1 ) //left window for playlist etc.
{
strings.append( p_item->p_input->psz_name );
const QString psz_name = QString::fromUtf8( p_item->p_input->psz_name );
strings.append( psz_name );
return;
}
......
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