diff options
author | Bastien Orivel <eijebong@bananium.fr> | 2020-04-18 16:34:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 14:34:34 +0000 |
commit | 03bce99ab69d10d8d8f5f8b1410f360f40f5b842 (patch) | |
tree | 687abf805afafe880d299e68cea1a4f8dc541b34 /alacritty/src | |
parent | 840cb1b93a68389fab63e5a8f94cdaa2d607d1c3 (diff) | |
download | r-alacritty-03bce99ab69d10d8d8f5f8b1410f360f40f5b842.tar.gz r-alacritty-03bce99ab69d10d8d8f5f8b1410f360f40f5b842.tar.bz2 r-alacritty-03bce99ab69d10d8d8f5f8b1410f360f40f5b842.zip |
Update depedencies
Diffstat (limited to 'alacritty/src')
-rw-r--r-- | alacritty/src/window.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty/src/window.rs b/alacritty/src/window.rs index 013a0556..4169814b 100644 --- a/alacritty/src/window.rs +++ b/alacritty/src/window.rs @@ -218,7 +218,7 @@ impl Window { _ => true, }; - let image = image::load_from_memory_with_format(WINDOW_ICON, ImageFormat::ICO) + let image = image::load_from_memory_with_format(WINDOW_ICON, ImageFormat::Ico) .expect("loading icon") .to_rgba(); let (width, height) = image.dimensions(); @@ -252,7 +252,7 @@ impl Window { _ => true, }; - let image = image::load_from_memory_with_format(WINDOW_ICON, ImageFormat::ICO) + let image = image::load_from_memory_with_format(WINDOW_ICON, ImageFormat::Ico) .expect("loading icon") .to_rgba(); let (width, height) = image.dimensions(); |