Kaydet (Commit) 87dda1b7 authored tarafından Enrico Tröger's avatar Enrico Tröger

Fixed bug when saving VTE settings.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@537 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst d9361d43
2006-07-07 Enrico Tröger <enrico.troeger@uvena.de>
* src/prefs.c: Fixed bug when saving VTE settings.
2006-07-06 Nick Treleaven <nick.treleaven@btinternet.com>
* src/keybindings.c, src/keybindings.h, src/dialogs.c:
......
......@@ -489,10 +489,11 @@ void on_prefs_button_clicked(GtkDialog *dialog, gint response, gpointer user_dat
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);
......
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