From 7264c5848870d46f61e6c9f438dfb46433d56066 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alperen=20=C4=B0sa=20Nalbant?= Date: Sun, 15 May 2022 19:29:01 +0300 Subject: [PATCH] set default size --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index c254cda..a7ee6bf 100755 --- a/main.py +++ b/main.py @@ -13,9 +13,9 @@ class MyWindow(Handy.Window): self.set_title("Tarayıcı") GLib.set_application_name("Tarayıcı") GLib.set_prgname('Tarayıcı') + self.set_default_size(900, 600) self.main_box = Gtk.Box( - spacing = 6, orientation = Gtk.Orientation.VERTICAL ) self.add(self.main_box)