From 5c085b39e28ad87777135bcca30d2ac99039de39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Thu, 17 Feb 2022 22:25:05 -0800 Subject: [PATCH] fix(graphical): boolean was messing up graphical display --- src/handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handler.rs b/src/handler.rs index 7ccfd71..8597409 100644 --- a/src/handler.rs +++ b/src/handler.rs @@ -191,7 +191,7 @@ impl MietteHandlerOpts { } else if let Ok(env) = std::env::var("NO_GRAPHICS") { env == "0" } else { - false + true } }