diff options
author | 2020-01-05 18:11:54 +0100 | |
---|---|---|
committer | 2020-01-05 18:11:54 +0100 | |
commit | 8d6f86b317303c06a0daf1ca3ce91c29670dd674 (patch) | |
tree | 0ed859bc36eac02b249cf7767195b7474937f06e /winit/src/settings | |
parent | 5af4159848341b14f6ff9ae14a9a222d8d8b0fb8 (diff) | |
download | iced-8d6f86b317303c06a0daf1ca3ce91c29670dd674.tar.gz iced-8d6f86b317303c06a0daf1ca3ce91c29670dd674.tar.bz2 iced-8d6f86b317303c06a0daf1ca3ce91c29670dd674.zip |
Remove `background` from `Settings`
Diffstat (limited to 'winit/src/settings')
-rw-r--r-- | winit/src/settings/mod.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/winit/src/settings/mod.rs b/winit/src/settings/mod.rs index 0384df32..b2290b46 100644 --- a/winit/src/settings/mod.rs +++ b/winit/src/settings/mod.rs @@ -1,6 +1,4 @@ //! Configure your application. -use crate::Color; - #[cfg(target_os = "windows")] #[path = "windows.rs"] mod platform; @@ -17,16 +15,12 @@ pub struct Settings { /// /// [`Window`]: struct.Window.html pub window: Window, - - /// The default background color of the application - pub background: Color, } impl Default for Settings { fn default() -> Settings { Settings { window: Window::default(), - background: Color::WHITE, } } } |