# HG changeset patch # User zas_ # Date 1220173179 0 # Node ID 7789dff370865d53b9640d82a87af45cd8a7f903 # Parent a8b874774b83ca376da4cf0c30800fb95396166f Move sync_options_with_current_state() call to save_options(). diff -r a8b874774b83 -r 7789dff37086 src/main.c --- a/src/main.c Sun Aug 31 08:41:42 2008 +0000 +++ b/src/main.c Sun Aug 31 08:59:39 2008 +0000 @@ -612,7 +612,6 @@ collect_manager_flush(); - sync_options_with_current_state(options); save_options(options); keys_save(); accel_map_save(); diff -r a8b874774b83 -r 7789dff37086 src/rcfile.c --- a/src/rcfile.c Sun Aug 31 08:41:42 2008 +0000 +++ b/src/rcfile.c Sun Aug 31 08:59:39 2008 +0000 @@ -643,6 +643,8 @@ { gchar *rc_path; + sync_options_with_current_state(options); + rc_path = g_build_filename(homedir(), GQ_RC_DIR, RC_FILE_NAME, NULL); save_options_to(rc_path, options); g_free(rc_path);