This commit is contained in:
amrbashir 2024-10-23 17:15:55 +03:00
parent 2189047f5e
commit e8b84d8379
No known key found for this signature in database
GPG Key ID: BBD7A47A2003FF33
1 changed files with 7 additions and 5 deletions

View File

@ -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);
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
}
}