From 3ba311a5bbf07a18eb52c9aee23fc069015c3dfd Mon Sep 17 00:00:00 2001 From: rabite Date: Mon, 8 Jul 2019 20:37:30 +0200 Subject: [PATCH] fix setting sixel config --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 1095f80..1893935 100644 --- a/src/config.rs +++ b/src/config.rs @@ -167,7 +167,7 @@ impl Config { } } } - Ok(("sixel", "off")) => { config.sixel = true; } + Ok(("sixel", "on")) => { config.sixel = true; } _ => { HError::config_error::(line.to_string()).log(); } } config