]> git.sesse.net Git - vlc/commitdiff
Qt: save volume on exit
authorFrancois Cartegnie <fcvlcdev@free.fr>
Thu, 29 Jul 2010 11:28:27 +0000 (13:28 +0200)
committerFrancois Cartegnie <fcvlcdev@free.fr>
Thu, 29 Jul 2010 11:28:27 +0000 (13:28 +0200)
modules/gui/qt4/qt4.cpp

index d689c4afac1bee9ed661f77349580f1ed80a48d1..c50327d7dc1661e65532490222475b99b1e9d0e2 100644 (file)
@@ -507,6 +507,17 @@ static void *Thread( void *obj )
     /* Save the path */
     getSettings()->setValue( "filedialog-path", p_intf->p_sys->filepath );
 
+    /* Save volume on exit */
+    audio_volume_t i_volume;
+    module_config_t *volconf;
+    if ( var_InheritBool( p_intf, "qt-autosave-volume" ) )
+        aout_VolumeGet( p_intf, &i_volume );
+    else
+        i_volume = config_GetInt( p_intf, "qt-startvolume" );
+    config_PutInt( p_intf, "volume", i_volume );
+    volconf = config_FindConfig( VLC_OBJECT(p_intf), "volume" );
+    if ( volconf ) volconf->b_autosave = true;
+
     /* Delete the configuration. Application has to be deleted after that. */
     delete p_intf->p_sys->mainSettings;