SF.net SVN: geany: [537] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Thu Jul 6 22:07:03 UTC 2006


Revision: 537
Author:   eht16
Date:     2006-07-06 15:06:56 -0700 (Thu, 06 Jul 2006)
ViewCVS:  http://svn.sourceforge.net/geany/?rev=537&view=rev

Log Message:
-----------
Fixed bug when saving VTE settings.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/prefs.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2006-07-06 09:43:10 UTC (rev 536)
+++ trunk/ChangeLog	2006-07-06 22:06:56 UTC (rev 537)
@@ -1,3 +1,8 @@
+2006-07-07  Enrico Tröger  <enrico.troeger at uvena.de>
+
+ * src/prefs.c: Fixed bug when saving VTE settings.
+
+
 2006-07-06  Nick Treleaven  <nick.treleaven at btinternet.com>
 
  * src/keybindings.c, src/keybindings.h, src/dialogs.c:

Modified: trunk/src/prefs.c
===================================================================
--- trunk/src/prefs.c	2006-07-06 09:43:10 UTC (rev 536)
+++ trunk/src/prefs.c	2006-07-06 22:06:56 UTC (rev 537)
@@ -489,10 +489,11 @@
 			g_free(app->terminal_settings);
 			hex_color_fore = utils_get_hex_from_color(vc->color_fore);
 			hex_color_back = utils_get_hex_from_color(vc->color_back);
-			app->terminal_settings = g_strdup_printf("%s;%s;%s;%d;%s;%s;%s", vc->font,
+			app->terminal_settings = g_strdup_printf("%s;%s;%s;%d;%s;%s;%s;%s", vc->font,
 					hex_color_fore, hex_color_back,
 					vc->scrollback_lines, vc->emulation,
-					utils_btoa(vc->scroll_on_key), utils_btoa(vc->scroll_on_out));
+					utils_btoa(vc->scroll_on_key), utils_btoa(vc->scroll_on_out),
+					utils_btoa(vc->follow_path));
 
 			vte_apply_user_settings();
 			g_free(hex_color_fore);


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