Commit 0fe06bc3 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: fix small error

This was not correctly saving the last opened folder with some encoding
parent 87cfa6dd
...@@ -506,7 +506,7 @@ static void openDirectory( intf_thread_t *p_intf, bool pl, bool go ) ...@@ -506,7 +506,7 @@ static void openDirectory( intf_thread_t *p_intf, bool pl, bool go )
if( dir.isEmpty() ) if( dir.isEmpty() )
return; return;
p_intf->p_sys->filepath = qtu( dir ); p_intf->p_sys->filepath = dir;
const char *scheme = "directory"; const char *scheme = "directory";
if( dir.endsWith( "/VIDEO_TS", Qt::CaseInsensitive ) ) if( dir.endsWith( "/VIDEO_TS", Qt::CaseInsensitive ) )
......
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