SF.net SVN: geany: [1115] trunk
ntrel at users.sourceforge.net
ntrel at xxxxx
Mon Dec 18 12:10:58 UTC 2006
Revision: 1115
http://svn.sourceforge.net/geany/?rev=1115&view=rev
Author: ntrel
Date: 2006-12-18 04:10:58 -0800 (Mon, 18 Dec 2006)
Log Message:
-----------
Open tabs left to right by default.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/keyfile.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2006-12-18 11:56:46 UTC (rev 1114)
+++ trunk/ChangeLog 2006-12-18 12:10:58 UTC (rev 1115)
@@ -2,6 +2,8 @@
* src/callbacks.c, src/search.c, src/document.c:
Don't log simple error messages like 'No text to find'.
+ * src/keyfile.c:
+ Open tabs left to right by default.
2006-12-17 Enrico Tröger <enrico.troeger at uvena.de>
Modified: trunk/src/keyfile.c
===================================================================
--- trunk/src/keyfile.c 2006-12-18 11:56:46 UTC (rev 1114)
+++ trunk/src/keyfile.c 2006-12-18 12:10:58 UTC (rev 1115)
@@ -321,7 +321,7 @@
app->show_markers_margin = utils_get_setting_boolean(config, PACKAGE, "show_markers_margin", TRUE);
app->show_linenumber_margin = utils_get_setting_boolean(config, PACKAGE, "show_linenumber_margin", TRUE);
app->fullscreen = utils_get_setting_boolean(config, PACKAGE, "fullscreen", FALSE);
- app->tab_order_ltr = utils_get_setting_boolean(config, PACKAGE, "tab_order_ltr", FALSE);
+ app->tab_order_ltr = utils_get_setting_boolean(config, PACKAGE, "tab_order_ltr", TRUE);
app->show_notebook_tabs = utils_get_setting_boolean(config, PACKAGE, "show_notebook_tabs", TRUE);
app->brace_match_ltgt = utils_get_setting_boolean(config, PACKAGE, "brace_match_ltgt", FALSE);
app->switch_msgwin_pages = utils_get_setting_boolean(config, PACKAGE, "switch_msgwin_pages", FALSE);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list