1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-25 14:05:41 -05:00

Fix crash on ScaleFactorChange on Windows

Windows is known to send zero sizes from winit in Risezed and now
in ScaleFactorChanged events. They were handled in Resized, but
not in ScaleFactorChanged.

Fixes #6949.
This commit is contained in:
Kirill Chibisov 2023-06-02 16:11:43 +03:00
parent 284f2c49a9
commit 0e6ce4523b
2 changed files with 11 additions and 4 deletions

View file

@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed
- Hyperlink preview not being shown when the terminal has exactly 2 lines
- Crash on Windows when changing display scale factor
## 0.12.1

View file

@ -1179,16 +1179,22 @@ impl input::Processor<EventProxy, ActionContext<'_, Notifier, EventProxy>> {
match event {
WinitEvent::UserEvent(Event { payload, .. }) => match payload {
EventType::ScaleFactorChanged(scale_factor, (width, height)) => {
self.ctx.window().scale_factor = scale_factor;
let display_update_pending = &mut self.ctx.display.pending_update;
// Push current font to update its scale factor.
let font = self.ctx.config.font.clone();
display_update_pending.set_font(font.with_size(*self.ctx.font_size));
// Resize to event's dimensions, since no resize event is emitted on Wayland.
display_update_pending.set_dimensions(PhysicalSize::new(width, height));
self.ctx.window().scale_factor = scale_factor;
// Ignore resize events to zero in any dimension, to avoid issues with Winit
// and the ConPTY. A 0x0 resize will also occur when the window is minimized
// on Windows.
if width != 0 && height != 0 {
// Resize to event's dimensions, since no resize event is emitted on
// Wayland.
display_update_pending.set_dimensions(PhysicalSize::new(width, height));
}
},
EventType::Frame => {
self.ctx.display.window.has_frame.store(true, Ordering::Relaxed);