Skip to content

Commit

Permalink
Fix integration example
Browse files Browse the repository at this point in the history
  • Loading branch information
hecrj committed Aug 12, 2024
1 parent 7decbb3 commit afa8ad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/integration/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pub fn main() -> Result<(), winit::error::EventLoopError> {
Size::new(physical_size.width, physical_size.height),
window.scale_factor(),
);
let clipboard = Clipboard::connect(&window);
let clipboard = Clipboard::connect(window.clone());

let backend =
wgpu::util::backend_bits_from_env().unwrap_or_default();
Expand Down

0 comments on commit afa8ad3

Please sign in to comment.