From 2616efa72e138b1370bd81a9aeb3370f7da88a2e Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Mon, 3 Jan 2022 09:13:38 -0700 Subject: [PATCH] window: fix test build --- window/examples/async.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/window/examples/async.rs b/window/examples/async.rs index 36a1c47da..ca7c1b05a 100644 --- a/window/examples/async.rs +++ b/window/examples/async.rs @@ -35,8 +35,12 @@ impl MyWindow { WindowEvent::Resized { dimensions, window_state, + live_resizing, } => { - eprintln!("resize {:?} state={:?}", dimensions, window_state); + eprintln!( + "resize {:?} live={} state={:?}", + dimensions, live_resizing, window_state + ); self.dims = dimensions; } WindowEvent::MouseEvent(event) => {