Browse Source

add window ext trait

Jonathan Kelley 1 year ago
parent
commit
9d4a8e1622
1 changed files with 3 additions and 0 deletions
  1. 3 0
      packages/desktop/src/menubar.rs

+ 3 - 0
packages/desktop/src/menubar.rs

@@ -15,6 +15,9 @@ mod impl_ {
 
     #[allow(unused)]
     pub fn build_menu_bar(menu: Menu, window: &Window) {
+        #[cfg(target_os = "windows")]
+        use tao::platform::windows::WindowExtWindows;
+
         #[cfg(target_os = "windows")]
         menu.init_for_hwnd(window.hwnd());