Revision: 1132 http://svn.sourceforge.net/geany/?rev=1132&view=rev Author: eht16 Date: 2006-12-20 14:52:10 -0800 (Wed, 20 Dec 2006)
Log Message: ----------- Changed default values: Confirm exit -> disabled by default Use tab to indent -> disabled by default.
Modified Paths: -------------- trunk/ChangeLog trunk/src/keyfile.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2006-12-20 15:57:28 UTC (rev 1131) +++ trunk/ChangeLog 2006-12-20 22:52:10 UTC (rev 1132) @@ -1,3 +1,10 @@ +2006-12-20 Enrico Tröger enrico.troeger@uvena.de + + * src/keyfile.c: Changed default values: + Confirm exit -> disabled by default + Use tab to indent -> disabled by default. + + 2006-12-20 Nick Treleaven nick.treleaven@btinternet.com
* src/keyfile.c:
Modified: trunk/src/keyfile.c =================================================================== --- trunk/src/keyfile.c 2006-12-20 15:57:28 UTC (rev 1131) +++ trunk/src/keyfile.c 2006-12-20 22:52:10 UTC (rev 1132) @@ -309,7 +309,7 @@ app->msgwindow_visible = utils_get_setting_boolean(config, PACKAGE, "msgwindow_visible", TRUE); app->pref_editor_line_breaking = utils_get_setting_boolean(config, PACKAGE, "line_breaking", FALSE); //default is off for better performance app->pref_editor_use_auto_indention = utils_get_setting_boolean(config, PACKAGE, "use_auto_indention", TRUE); - app->use_tab_to_indent = utils_get_setting_boolean(config, PACKAGE, "use_tab_to_indent", TRUE); + app->use_tab_to_indent = utils_get_setting_boolean(config, PACKAGE, "use_tab_to_indent", FALSE); app->pref_editor_use_indicators = utils_get_setting_boolean(config, PACKAGE, "use_indicators", TRUE); app->pref_editor_show_indent_guide = utils_get_setting_boolean(config, PACKAGE, "show_indent_guide", FALSE); app->pref_editor_show_white_space = utils_get_setting_boolean(config, PACKAGE, "show_white_space", FALSE); @@ -365,7 +365,7 @@
g_free(tmp_string); } - app->pref_main_confirm_exit = utils_get_setting_boolean(config, PACKAGE, "pref_main_confirm_exit", TRUE); + app->pref_main_confirm_exit = utils_get_setting_boolean(config, PACKAGE, "pref_main_confirm_exit", FALSE); app->pref_main_suppress_search_dialogs = utils_get_setting_boolean(config, PACKAGE, "pref_main_suppress_search_dialogs", FALSE); app->pref_main_load_session = utils_get_setting_boolean(config, PACKAGE, "pref_main_load_session", TRUE); app->pref_main_save_winpos = utils_get_setting_boolean(config, PACKAGE, "pref_main_save_winpos", TRUE);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.