From d9772908195d1b8f00cb4f61c451cbef8ee19562 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 closer to PinePhone form factor. --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index cd6974d..422f055 100644 --- a/main.py +++ b/main.py @@ -140,7 +140,9 @@ class Application(Gtk.Application): application=self, task_manager=self.task_manager, ) - win.set_default_size(600, 400) + + # PinePhone screen is 720x1440 (portrait) but, has 2x pixel density + win.set_default_size(360, 720) win.present()