From 0785b334e79d8f973c96b86608823f54afdf93c4 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 20 Jun 2024 18:35:10 +0200 Subject: Add `window` method to `Application` --- src/application.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/application.rs b/src/application.rs index 7b292e23..5d16b40f 100644 --- a/src/application.rs +++ b/src/application.rs @@ -212,6 +212,13 @@ impl Application

{ self } + /// Sets the [`window::Settings`] of the [`Application`]. + /// + /// Overwrites any previous [`window::Settings`]. + pub fn window(self, window: window::Settings) -> Self { + Self { window, ..self } + } + /// Sets the [`window::Settings::position`] to [`window::Position::Centered`] in the [`Application`]. pub fn centered(self) -> Self { Self { @@ -288,7 +295,7 @@ impl Application

{ ..self } } - + /// Sets the [`window::Settings::level`] of the [`Application`]. pub fn level(self, level: window::Level) -> Self { Self { -- cgit