diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-02-13 18:15:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-13 18:15:57 +0000 |
commit | d872b9f3aed225bcae74ee3707a690c1a096608e (patch) | |
tree | f0686a59463c65e218b4b3945b6249ecc1dfc0f3 /alacritty/src/display/content.rs | |
parent | a5e2ccd5aba720cc63af4079e7f5e5afb6d9b893 (diff) | |
download | r-alacritty-d872b9f3aed225bcae74ee3707a690c1a096608e.tar.gz r-alacritty-d872b9f3aed225bcae74ee3707a690c1a096608e.tar.bz2 r-alacritty-d872b9f3aed225bcae74ee3707a690c1a096608e.zip |
Update dependencies
This introduces some duplicate dependencies, though they are necessary
to build properly without any warnings.
Fixes #4735.
Diffstat (limited to 'alacritty/src/display/content.rs')
-rw-r--r-- | alacritty/src/display/content.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alacritty/src/display/content.rs b/alacritty/src/display/content.rs index 81c2977f..1c7e2989 100644 --- a/alacritty/src/display/content.rs +++ b/alacritty/src/display/content.rs @@ -14,7 +14,7 @@ use alacritty_terminal::term::{ RenderableContent as TerminalContent, RenderableCursor as TerminalCursor, Term, TermMode, }; -use crate::config::ui_config::UIConfig; +use crate::config::ui_config::UiConfig; use crate::display::color::{List, DIM_FACTOR}; /// Minimum contrast between a fixed cursor color and the cell's background. @@ -31,7 +31,7 @@ pub struct RenderableContent<'a> { terminal_cursor: TerminalCursor, cursor: Option<RenderableCursor>, search: RenderableSearch, - config: &'a Config<UIConfig>, + config: &'a Config<UiConfig>, colors: &'a List, } @@ -39,7 +39,7 @@ impl<'a> RenderableContent<'a> { pub fn new<T: EventListener>( term: &'a Term<T>, dfas: Option<&RegexSearch>, - config: &'a Config<UIConfig>, + config: &'a Config<UiConfig>, colors: &'a List, show_cursor: bool, ) -> Self { |