Commit 3b338b05 authored by Antoine Cellerier's avatar Antoine Cellerier

Saves the qt intf settings in $XDG_CONFIG_DIR/vlc/ too (instead of $XDG_CONFIG_DIR/VideoLAN/).

parent 9b37b05e
...@@ -94,7 +94,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -94,7 +94,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
/** /**
* Configuration and settings * Configuration and settings
**/ **/
settings = new QSettings( "VideoLAN", "VLC" ); settings = new QSettings( "vlc", "vlc-qt-interface" );
settings->beginGroup( "MainWindow" ); settings->beginGroup( "MainWindow" );
/* Main settings */ /* Main settings */
......
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