diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-11-10 18:16:22 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 18:16:22 +0400 |
commit | 5060f8eeb864e8c304fbad9588bdd882db942356 (patch) | |
tree | b615ded19e6ac545b495f716e2a22ecd903332af /alacritty/src/display/cursor.rs | |
parent | 3ffd6c8f26f9788466b9ba95659b8de970a10f08 (diff) | |
download | r-alacritty-5060f8eeb864e8c304fbad9588bdd882db942356.tar.gz r-alacritty-5060f8eeb864e8c304fbad9588bdd882db942356.tar.bz2 r-alacritty-5060f8eeb864e8c304fbad9588bdd882db942356.zip |
Remove `alacritty_config` from alacritty_terminal
There's no need to force alacritty's user configuration on
other users of the crate, thus provide the options actually used
by alacritty_terminal itself.
Diffstat (limited to 'alacritty/src/display/cursor.rs')
-rw-r--r-- | alacritty/src/display/cursor.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty/src/display/cursor.rs b/alacritty/src/display/cursor.rs index 8a4cc729..65933ccc 100644 --- a/alacritty/src/display/cursor.rs +++ b/alacritty/src/display/cursor.rs @@ -1,8 +1,8 @@ //! Convert a cursor into an iterator of rects. -use alacritty_terminal::ansi::CursorShape; -use alacritty_terminal::term::color::Rgb; +use alacritty_terminal::vte::ansi::CursorShape; +use crate::display::color::Rgb; use crate::display::content::RenderableCursor; use crate::display::SizeInfo; use crate::renderer::rects::RenderRect; |