From ef4d268225ed9b8de115e3d283d4b6367db37e2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Mart=C3=ADnez=20Portela?= Date: Sun, 27 Mar 2022 23:34:01 +0200 Subject: [PATCH] Make default size larger, and closer to PinePhone form factor. --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index cd6974d..8e72b80 100644 --- a/main.py +++ b/main.py @@ -140,7 +140,7 @@ class Application(Gtk.Application): application=self, task_manager=self.task_manager, ) - win.set_default_size(600, 400) + win.set_default_size(720, 1024) # PinePhone screen is 720x1440 win.present()