From 85b21a920d0158c52ec8f28deb8779322439b8a1 Mon Sep 17 00:00:00 2001 From: "Tom A. Wagner" Date: Tue, 5 Jan 2021 11:27:15 +0100 Subject: [PATCH] Start application with a bigger window --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 5424c61..9f6facc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -34,8 +34,8 @@ fn main() -> Result<(), Box> { app.connect_activate(move |app| { let window = gtk::ApplicationWindowBuilder::new() .application(app) - .default_width(800) - .default_height(600) + .default_width(1280) + .default_height(720) .title("Pipewire Graph Editor") .child(&*graphview.borrow()) .build();