mirror of
https://github.com/rust-windowing/winit.git
synced 2026-08-30 13:20:06 -04:00
example: Fix typo: "fosus" -> "focus" (#3629)
This commit is contained in:
@@ -305,9 +305,9 @@ impl ApplicationHandler<UserEvent> for Application {
|
|||||||
}
|
}
|
||||||
WindowEvent::Focused(focused) => {
|
WindowEvent::Focused(focused) => {
|
||||||
if focused {
|
if focused {
|
||||||
println!("Window={window_id:?} fosused");
|
println!("Window={window_id:?} focused");
|
||||||
} else {
|
} else {
|
||||||
println!("Window={window_id:?} unfosused");
|
println!("Window={window_id:?} unfocused");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
WindowEvent::ScaleFactorChanged { scale_factor, .. } => {
|
WindowEvent::ScaleFactorChanged { scale_factor, .. } => {
|
||||||
|
|||||||
Reference in New Issue
Block a user