diff options
Diffstat (limited to 'alacritty_terminal/src/config/mod.rs')
-rw-r--r-- | alacritty_terminal/src/config/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty_terminal/src/config/mod.rs b/alacritty_terminal/src/config/mod.rs index d077190b..fd049af0 100644 --- a/alacritty_terminal/src/config/mod.rs +++ b/alacritty_terminal/src/config/mod.rs @@ -60,7 +60,7 @@ pub struct Config<T> { /// Should draw bold text with brighter colors instead of bold font #[serde(default, deserialize_with = "failure_default")] - draw_bold_text_with_bright_colors: DefaultTrueBool, + draw_bold_text_with_bright_colors: bool, #[serde(default, deserialize_with = "failure_default")] pub colors: Colors, @@ -149,7 +149,7 @@ impl<T> Config<T> { #[inline] pub fn draw_bold_text_with_bright_colors(&self) -> bool { - self.draw_bold_text_with_bright_colors.0 + self.draw_bold_text_with_bright_colors } /// Should show render timer |