Skip to content

Commit

Permalink
Fix "other" language block hidden in background (#626)
Browse files Browse the repository at this point in the history
The language blocks use background coloring for their styling. The
default coloring is the background itself, rendering the block
invisible. This reverts the change introduced in #625 to use `Default`
instead of `White` for the "other" block.

See #625 (comment)
  • Loading branch information
spenserblack authored Mar 23, 2022
1 parent 6d14f6e commit dd2b6c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/info/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ impl Info {
languages.push((
"Other".to_string(),
other_perc,
DynColors::Ansi(AnsiColors::Default),
DynColors::Ansi(AnsiColors::White),
));
languages
} else {
Expand Down

0 comments on commit dd2b6c5

Please sign in to comment.