aboutsummaryrefslogtreecommitdiffstats
path: root/src/conf.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/conf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/conf.c b/src/conf.c
index b31b7b173..740939d10 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -58,6 +58,7 @@
#define CONF_VISIBLE_BELL "visible-bell"
#define CONF_XTERM_TITLE "set-xterm-title"
#define CONF_ENABLE_MOUSE "enable-mouse"
+#define CONF_CROSSFADE_TIME "crossfade-time"
typedef enum {
KEY_PARSER_UNKNOWN,
@@ -467,6 +468,10 @@ read_rc_file(char *filename, options_t *options)
{
options->enable_mouse = str2bool(value);
}
+ else if( !strcasecmp(CONF_CROSSFADE_TIME, name) )
+ {
+ options->crossfade_time = atoi(value);
+ }
else
{
match_found = 0;