mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
parent
c2c8d6bf37
commit
a82df6ac43
2 changed files with 3 additions and 1 deletions
|
@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Semantic selection stopping at full-width glyphs
|
||||
- Full-width glyphs cut off in last column
|
||||
- Crash when starting on some X11 systems
|
||||
- Font size resetting when Alacritty is moved between screens
|
||||
|
||||
## 0.4.1
|
||||
|
||||
|
|
|
@ -463,7 +463,8 @@ impl<N: Notify + OnResize> Processor<N> {
|
|||
let display_update_pending = &mut processor.ctx.display_update_pending;
|
||||
|
||||
// Push current font to update its DPR
|
||||
display_update_pending.font = Some(processor.ctx.config.font.clone());
|
||||
display_update_pending.font =
|
||||
Some(processor.ctx.config.font.clone().with_size(*processor.ctx.font_size));
|
||||
|
||||
// Resize to event's dimensions, since no resize event is emitted on Wayland
|
||||
display_update_pending.dimensions = Some(PhysicalSize::new(width, height));
|
||||
|
|
Loading…
Reference in a new issue