From 5c45d36d1a8cfd92cd1a454a7f4deedcd4d13fe7 Mon Sep 17 00:00:00 2001
From: TimUntersberger <timuntersberger2@gmail.com>
Date: Fri, 25 Jun 2021 17:16:44 +0200
Subject: wip

---
 winit/src/settings.rs | 4 ++++
 1 file changed, 4 insertions(+)

(limited to 'winit/src/settings.rs')

diff --git a/winit/src/settings.rs b/winit/src/settings.rs
index 941d88ce..0508cd9b 100644
--- a/winit/src/settings.rs
+++ b/winit/src/settings.rs
@@ -35,6 +35,9 @@ pub struct Window {
     /// The size of the window.
     pub size: (u32, u32),
 
+    /// The position of the window.
+    pub position: (u32, u32),
+
     /// The minimum size of the window.
     pub min_size: Option<(u32, u32)>,
 
@@ -75,6 +78,7 @@ impl Window {
         window_builder = window_builder
             .with_title(title)
             .with_inner_size(winit::dpi::LogicalSize { width, height })
+            .with_outer_position(self.position)
             .with_resizable(self.resizable)
             .with_decorations(self.decorations)
             .with_transparent(self.transparent)
-- 
cgit