diff options
author | 2023-03-15 18:20:38 -0700 | |
---|---|---|
committer | 2023-03-15 18:20:38 -0700 | |
commit | 41836dd80d0534608e7aedfbf2319c540a23de1a (patch) | |
tree | 45bc8bfb126bf2674c456f61cb95945d8205a8a3 /winit/src/multi_window.rs | |
parent | ce4b2c93d9802dfb8cd3fc9033d76651d4bbc75b (diff) | |
download | iced-41836dd80d0534608e7aedfbf2319c540a23de1a.tar.gz iced-41836dd80d0534608e7aedfbf2319c540a23de1a.tar.bz2 iced-41836dd80d0534608e7aedfbf2319c540a23de1a.zip |
Added per-window theme support.
Diffstat (limited to '')
-rw-r--r-- | winit/src/multi_window.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winit/src/multi_window.rs b/winit/src/multi_window.rs index 6e28f1fa..9b395c1d 100644 --- a/winit/src/multi_window.rs +++ b/winit/src/multi_window.rs @@ -112,7 +112,7 @@ where fn title(&self, window: window::Id) -> String; /// Returns the current [`Theme`] of the [`Application`]. - fn theme(&self) -> <Self::Renderer as crate::Renderer>::Theme; + fn theme(&self, window: window::Id) -> <Self::Renderer as crate::Renderer>::Theme; /// Returns the [`Style`] variation of the [`Theme`]. fn style( |