Incorrect window location on Windows 10 (hides window controls)
When an application is opened on Windows 10 with window bounds set to 0, 0
it will align to content to 0, 0
and hide window controls. This makes it impossible to move the window.
To reproduce run on Windows 10
cargo run --example widgets --release
or use
fn main() {
let mut application = Application::default();
application
.create_window()
.with_bounds(Rect::new(0, 0, 420, 730))
.with_title("Orbtk")
.with_root(MainView::create())
.with_debug_flag(false)
.build();
application.run();
}
How it looks: