From 15d0abbc6a5130bc15bfe86afc71c294c8e5b526 Mon Sep 17 00:00:00 2001
From: conglinyizhi <cslbyivi@outlook.com>
Date: Sat, 7 Dec 2024 13:35:11 +0800
Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(main):=20=E8=B0=83=E6=95=B4?=
 =?UTF-8?q?=E7=AA=97=E5=8F=A3=E5=A4=A7=E5=B0=8F=E5=92=8C=E4=BD=8D=E7=BD=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/main.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main.rs b/src/main.rs
index 82d97f2..dfe18e0 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -21,11 +21,11 @@ fn main() {
     let fps = args[4].clone();
     let mut camera_open = false;
     let app = App::default();
-    let mut camera_window = Window::new(0, 0, 600, 300, "Camera Video Output Window");
+    let mut camera_window = Window::new(0, 0, 400, 400, "Camera Video Output Window");
     let mut camera_frame = Frame::default_fill();
     camera_window.end();
     camera_window.show();
-    let mut color_window = Window::new(0, 600, 600, 300, "Video Output Window");
+    let mut color_window = Window::new(0, 400, 400, 400, "Video Output Window");
     let mut color_frame = Frame::default_fill();
     color_window.end();
     color_window.show();