From 8ff69d591f18692dbb6ec23b0e62e4cc20b9b78e Mon Sep 17 00:00:00 2001 From: Vic Fryzel Date: Fri, 23 Jul 2010 23:16:39 -0400 Subject: Making window height and width configurable. --- svte.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'svte.c') diff --git a/svte.c b/svte.c index 073420c..281a8c0 100644 --- a/svte.c +++ b/svte.c @@ -382,6 +382,10 @@ static void parse_config_file(gchar *config_file) { keyfile, "ui", "url_regex", NULL); config->visible_bell = g_key_file_get_boolean( keyfile, "ui", "visible_bell", NULL); + config->window_height = g_key_file_get_integer( + keyfile, "ui", "window_height", NULL); + config->window_width = g_key_file_get_integer( + keyfile, "ui", "window_width", NULL); config->word_chars = g_key_file_get_string( keyfile, "ui", "word_chars", NULL); if (NULL == config->font) { -- cgit v1.2.3