From 97d2caa466002f31b02970176ca2fdd7b0334564 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Mon, 17 Jun 2024 15:31:12 -0600 Subject: [PATCH] break example --- crates/gpui/examples/hello_world.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/gpui/examples/hello_world.rs b/crates/gpui/examples/hello_world.rs index 96ab335b08..0ff44a57c0 100644 --- a/crates/gpui/examples/hello_world.rs +++ b/crates/gpui/examples/hello_world.rs @@ -23,7 +23,7 @@ impl Render for HelloWorld { fn main() { App::new().run(|cx: &mut AppContext| { - let bounds = Bounds::centered(None, size(px(600.0), px(600.0)), cx); + let bounds = Bounds::new(Point::new(px(14.0), px(49.0)), size(px(300.0), px(300.0))); cx.open_window( WindowOptions { window_bounds: Some(WindowBounds::Windowed(bounds)),