summaryrefslogtreecommitdiffstats
path: root/src/settings.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-29 12:31:47 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-29 12:31:47 +0100
commit89a6b8a9a173e767753ec777fd83c912c1be5ea3 (patch)
treea21f6660667d61ab9823c2a3a8dd02671a44363e /src/settings.rs
parentf74ab463d44dd0bb025b0cea466d2861576253dd (diff)
downloadiced-89a6b8a9a173e767753ec777fd83c912c1be5ea3.tar.gz
iced-89a6b8a9a173e767753ec777fd83c912c1be5ea3.tar.bz2
iced-89a6b8a9a173e767753ec777fd83c912c1be5ea3.zip
Rename `Settings::background_color` to `background`
Diffstat (limited to 'src/settings.rs')
-rw-r--r--src/settings.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/settings.rs b/src/settings.rs
index 8da8948c..4ae18a14 100644
--- a/src/settings.rs
+++ b/src/settings.rs
@@ -14,14 +14,14 @@ pub struct Settings {
/// The default background [`Color`] of the application
///
/// [`Color`]: ../struct.Color.html
- pub background_color: Color,
+ pub background: Color,
}
impl Default for Settings {
fn default() -> Settings {
Settings {
window: Window::default(),
- background_color: Color::WHITE,
+ background: Color::WHITE,
}
}
}
@@ -59,7 +59,7 @@ impl From<Settings> for iced_winit::Settings {
decorations: settings.window.decorations,
platform_specific: Default::default(),
},
- background_color: settings.background_color,
+ background: settings.background,
}
}
}