Skip to content

Commit

Permalink
Oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
notgull committed Jul 9, 2023
1 parent 7afe7ae commit d85172b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ skip = [
{ name = "num_enum"}, # See above ^, waiting for release
{ name = "num_enum_derive"},# See above ^, waiting for release
{ name = "miniz_oxide"}, # https://github.com/rust-lang/flate2-rs/issues/340
{ name = "raw-window-handle" }, # https://github.com/rust-windowing/raw-window-handle/issues/125, slow transition
{ name = "redox_syscall" }, # https://gitlab.redox-os.org/redox-os/orbclient/-/issues/46
]
skip-tree = []
Expand Down
2 changes: 1 addition & 1 deletion src/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1372,7 +1372,7 @@ unsafe impl HasRawWindowHandle for Window {
/// [`Event::Resumed`]: crate::event::Event::Resumed
/// [`Event::Suspended`]: crate::event::Event::Suspended
fn raw_window_handle(&self) -> Result<RawWindowHandle, HandleError> {
Ok(self.window.raw_window_handle())
self.window.raw_window_handle()
}
}

Expand Down

0 comments on commit d85172b

Please sign in to comment.