fix(graphical): boolean was messing up graphical display

This commit is contained in:
Kat Marchán 2022-02-17 22:25:05 -08:00
parent 0f8e44654b
commit 5c085b39e2
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ impl MietteHandlerOpts {
} else if let Ok(env) = std::env::var("NO_GRAPHICS") {
env == "0"
} else {
false
true
}
}