File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " tauri " : patch
3+ ---
4+
5+ Fixes definition of ` impl HasRawDisplayHandle ` for ` AppHandle ` and ` App ` .
Original file line number Diff line number Diff line change @@ -1653,13 +1653,13 @@ impl<R: Runtime> Builder<R> {
16531653 }
16541654}
16551655
1656- unsafe impl HasRawDisplayHandle for AppHandle {
1656+ unsafe impl < R : Runtime > HasRawDisplayHandle for AppHandle < R > {
16571657 fn raw_display_handle ( & self ) -> raw_window_handle:: RawDisplayHandle {
16581658 self . runtime_handle . raw_display_handle ( )
16591659 }
16601660}
16611661
1662- unsafe impl HasRawDisplayHandle for App {
1662+ unsafe impl < R : Runtime > HasRawDisplayHandle for App < R > {
16631663 fn raw_display_handle ( & self ) -> raw_window_handle:: RawDisplayHandle {
16641664 self . handle . raw_display_handle ( )
16651665 }
You can’t perform that action at this time.
0 commit comments