diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-01-20 17:39:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-20 17:39:15 +0000 |
commit | 31271c726e31f90729b5d23dac597edf68cc437a (patch) | |
tree | b66e97fa10532597e2b60ebe4d44682b6b1a9a1a /alacritty.yml | |
parent | 5096426f9e15a21bf78b23160f7c95a9ea2bd7f5 (diff) | |
download | alacritty-31271c726e31f90729b5d23dac597edf68cc437a.tar.gz alacritty-31271c726e31f90729b5d23dac597edf68cc437a.zip |
Fix crash on Windows (#2021)
The rusttype backend did not properly support manually specifying font
styles, but instead chose to panic when they are specified.
The rusttype implementation now provides a proper implementation for
handling `bold`, `italic` and `regular` font styles.
This fixes #2020.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/alacritty.yml b/alacritty.yml index f31f0746..5cf58d25 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -79,7 +79,7 @@ tabspaces: 8 # Font configuration (changes require restart) font: # Normal (roman) font face - normal: + #normal: # Font family # # Default: @@ -89,10 +89,10 @@ font: #family: monospace # The `style` can be specified to pick a specific face. - style: Regular + #style: Regular # Bold font face - bold: + #bold: # Font family # # If the bold family is not specified, it will fall back to the @@ -100,10 +100,10 @@ font: #family: monospace # The `style` can be specified to pick a specific face. - style: Bold + #style: Bold # Italic font face - italic: + #italic: # Font family # # If the italic family is not specified, it will fall back to the @@ -111,7 +111,7 @@ font: #family: monospace # The `style` can be specified to pick a specific face. - style: Italic + #style: Italic # Point size size: 11.0 |