Commit 1874e432 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Get/Put VLM config to documents directory

parent e0abdc4f
...@@ -267,7 +267,7 @@ bool VLMDialog::exportVLMConf() ...@@ -267,7 +267,7 @@ bool VLMDialog::exportVLMConf()
{ {
QString saveVLMConfFileName = QFileDialog::getSaveFileName( this, QString saveVLMConfFileName = QFileDialog::getSaveFileName( this,
qtr( "Save VLM configuration as..." ), qtr( "Save VLM configuration as..." ),
QVLCUserDir( VLC_HOME_DIR ), QVLCUserDir( VLC_DOCUMENTS_DIR ),
qtr( "VLM conf (*.vlm);;All (*)" ) ); qtr( "VLM conf (*.vlm);;All (*)" ) );
if( !saveVLMConfFileName.isEmpty() ) if( !saveVLMConfFileName.isEmpty() )
...@@ -339,7 +339,7 @@ bool VLMDialog::importVLMConf() ...@@ -339,7 +339,7 @@ bool VLMDialog::importVLMConf()
QString openVLMConfFileName = toNativeSeparators( QString openVLMConfFileName = toNativeSeparators(
QFileDialog::getOpenFileName( QFileDialog::getOpenFileName(
this, qtr( "Open VLM configuration..." ), this, qtr( "Open VLM configuration..." ),
QVLCUserDir( VLC_HOME_DIR ), QVLCUserDir( VLC_DOCUMENTS_DIR ),
qtr( "VLM conf (*.vlm);;All (*)" ) ) ); qtr( "VLM conf (*.vlm);;All (*)" ) ) );
if( !openVLMConfFileName.isEmpty() ) if( !openVLMConfFileName.isEmpty() )
......
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