amrbashir hace 9 meses
padre
commit
e8b84d8379
Se han modificado 1 ficheros con 7 adiciones y 5 borrados
  1. 7 5
      crates/tauri-runtime-wry/src/lib.rs

+ 7 - 5
crates/tauri-runtime-wry/src/lib.rs

@@ -1098,11 +1098,13 @@ impl WindowBuilder for WindowBuilderWrapper {
     })
   }
 
-  fn window_classname<S: Into<String>>(mut self, _window_classname: S) -> Self {
-    #[cfg(windows)]
-    {
-      self.inner = self.inner.with_window_classname(_window_classname);
-    }
+  #[cfg(windows)]
+  fn window_classname<S: Into<String>>(mut self, window_classname: S) -> Self {
+    self.inner = self.inner.with_window_classname(window_classname);
+    self
+  }
+  #[cfg(not(windows))]
+  fn window_classname<S: Into<String>>(self, _window_classname: S) -> Self {
     self
   }
 }