Kaydet (Commit) 701929eb authored tarafından Nick Treleaven's avatar Nick Treleaven

Fix saving the terminal tool on quitting

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@541 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 13129045
2006-07-08 Nick Treleaven <nick.treleaven@btinternet.com>
* src/keyfile.c: Fix saving the terminal tool on quitting.
2006-07-08 Enrico Tröger <enrico.troeger@uvena.de>
* src/encodings.c: Made encoding descriptions translatable.
......
......@@ -138,7 +138,7 @@ void configuration_save(void)
// store tools settings
g_key_file_set_string(config, "tools", "make_cmd", app->tools_make_cmd ? app->tools_make_cmd : "");
g_key_file_set_string(config, "tools", "terminal_cmd", app->tools_term_cmd ? app->tools_term_cmd : "");
g_key_file_set_string(config, "tools", "term_cmd", app->tools_term_cmd ? app->tools_term_cmd : "");
g_key_file_set_string(config, "tools", "browser_cmd", app->tools_browser_cmd ? app->tools_browser_cmd : "");
g_key_file_set_string(config, "tools", "print_cmd", app->tools_print_cmd ? app->tools_print_cmd : "");
......
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