Skip to content

Commit

Permalink
Merge pull request #266 from robjtede/improve/flags-init
Browse files Browse the repository at this point in the history
add init method for settings with flags
  • Loading branch information
hecrj authored Apr 6, 2020
2 parents 0f60253 + 0766da7 commit 6e38631
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,22 @@ pub struct Settings<Flags> {
pub antialiasing: bool,
}

impl<Flags> Settings<Flags> {
/// Initialize application settings using the given data.
///
/// [`Application`]: ../trait.Application.html
pub fn with_flags(flags: Flags) -> Self {
Self {
flags,
// not using ..Default::default() struct update syntax since it is more permissive to
// allow initializing with flags without trait bound on Default
antialiasing: Default::default(),
default_font: Default::default(),
window: Default::default(),
}
}
}

#[cfg(not(target_arch = "wasm32"))]
impl<Flags> From<Settings<Flags>> for iced_winit::Settings<Flags> {
fn from(settings: Settings<Flags>) -> iced_winit::Settings<Flags> {
Expand Down

0 comments on commit 6e38631

Please sign in to comment.