We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the moment it seems that the Resized event comes in before the ScaleFactorChanged which may cause problems.
Resized
ScaleFactorChanged
[4.056648125s] [INFO ] [alacritty] winit event: WindowEvent { window_id: WindowId(WindowId(5778942480)), event: Resized(PhysicalSize { width: 3840, height: 2160 }) } [4.056766750s] [INFO ] [alacritty] winit event: WindowEvent { window_id: WindowId(WindowId(5778942480)), event: ScaleFactorChanged { scale_factor: 1.0, inner_size_writer: InnerSizeWriter { new_inner_size: (Weak) } } } [4.061049625s] [INFO ] [alacritty] winit event: WindowEvent { window_id: WindowId(WindowId(5778942480)), event: Moved(PhysicalPosition { x: -286, y: -1080 }) }
Platform: macOS 14.0 Application: alacritty 0.13.0-dev (34b5dbac)
The text was updated successfully, but these errors were encountered:
Send a Resized event after ScaleFactorChanged
b926337
fixes rust-windowing#3213
On macOS, send a Resized event after ScaleFactorChanged
c89e6df
Fixes #3213.
bf2a9f6
Fixes rust-windowing#3213.
f709ac6
Successfully merging a pull request may close this issue.
At the moment it seems that the
Resized
event comes in before theScaleFactorChanged
which may cause problems.Platform: macOS 14.0
Application: alacritty 0.13.0-dev (34b5dbac)
The text was updated successfully, but these errors were encountered: