diff options
author | Christian Duerr <contact@christianduerr.com> | 2017-12-13 18:24:12 +0100 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-12-24 09:46:54 -0800 |
commit | 6eb634a2b83a8a401973ec9e52c7c7ffb5b9fe84 (patch) | |
tree | fbd7755e3fa77d444efade621054069071db6b53 /font | |
parent | 44251d9dbb411b5e915d28a8c10c3b34cb42abfd (diff) | |
download | alacritty-6eb634a2b83a8a401973ec9e52c7c7ffb5b9fe84.tar.gz alacritty-6eb634a2b83a8a401973ec9e52c7c7ffb5b9fe84.zip |
Add box cursor to unfocused underline and beam
Because some people have requested this change, the beam and underline
cursors now also transform into an empty box when the terminal loses
focus. Like this there is one unique symbol to indicate that a terminal
is not currently focused.
Diffstat (limited to 'font')
-rw-r--r-- | font/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/font/src/lib.rs b/font/src/lib.rs index 68935e45..ad1f4f80 100644 --- a/font/src/lib.rs +++ b/font/src/lib.rs @@ -255,7 +255,7 @@ pub fn get_beam_cursor_glyph( }); } -// Returns a custom beam cursor character +// Returns a custom box cursor character pub fn get_box_cursor_glyph( ascent: i32, height: i32, |