on Wayland, drop resize events equal to the current window size (#1249)

* on Wayland, drop resize events equal to the current window size

* Add changelog entry
This commit is contained in:
Kirill Chibisov 2019-11-01 03:45:45 +03:00 committed by Osspial
parent f916311744
commit 72fc6a74ec
2 changed files with 17 additions and 9 deletions

View file

@ -43,6 +43,7 @@
- This is because some platforms cannot run the event loop outside the main thread. Preventing this
reduces the potential for cross-platform compatibility gotchyas.
- On Windows and Linux X11/Wayland, add platform-specific functions for creating an `EventLoop` outside the main thread.
- On Wayland, drop resize events identical to the current window size.
# 0.20.0 Alpha 3 (2019-08-14)

View file

@ -673,7 +673,10 @@ impl<T> EventLoop<T> {
wid,
frame| {
if let Some(frame) = frame {
if let Some((w, h)) = newsize {
if let Some(newsize) = newsize {
// Drop resize events equaled to the current size
if newsize != *size {
let (w, h) = newsize;
frame.resize(w, h);
frame.refresh();
let logical_size = crate::dpi::LogicalSize::new(w as f64, h as f64);
@ -682,6 +685,10 @@ impl<T> EventLoop<T> {
wid,
);
*size = (w, h);
} else {
// Refresh csd, etc, otherwise
frame.refresh();
}
} else if frame_refresh {
frame.refresh();
if !refresh {