From 353a25b750e8c5c77870c17db32f0fae8d068370 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 25 Oct 2022 22:10:05 -0600 Subject: [PATCH] Reduce size of editor test --- examples/editor-test/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/editor-test/src/main.rs b/examples/editor-test/src/main.rs index d38ada5..1919afb 100644 --- a/examples/editor-test/src/main.rs +++ b/examples/editor-test/src/main.rs @@ -43,8 +43,8 @@ fn main() { let mut window = Window::new_flags( -1, -1, - 1920, - 1080, + 1024, + 768, &format!("COSMIC TEXT - {}", font_system.locale), &[WindowFlag::Async], )