Compare commits

..

3 Commits

Author SHA1 Message Date
Sergio Martínez Portela
62f01287d9 Rename to org-convergence. 2022-03-27 23:46:17 +02:00
Sergio Martínez Portela
89d8813080 Fix iterative load to not clear and re-draw items. 2022-03-27 23:44:58 +02:00
Sergio Martínez Portela
ef4d268225 Make default size larger, and closer to PinePhone form factor. 2022-03-27 23:34:01 +02:00
2 changed files with 10 additions and 5 deletions

View File

@ -119,7 +119,7 @@ class Application(Gtk.Application):
""" Main Aplication class """
def __init__(self):
super().__init__(application_id='com.codigoparallevar.org-convergence',
super().__init__(application_id='com.codigoparallevar.gtk4-organizer',
flags=Gio.ApplicationFlags.FLAGS_NONE)
self.task_manager = task_manager.TaskManager(DOCS_PATH)
@ -136,9 +136,7 @@ class Application(Gtk.Application):
application=self,
task_manager=self.task_manager,
)
# PinePhone screen is 720x1440 (portrait) but, has 2x pixel density
win.set_default_size(360, 720)
win.set_default_size(720, 1024) # PinePhone screen is 720x1440
win.present()

View File

@ -1,4 +1,7 @@
#task-list {
border: 1px solid #cdc7c2;
padding: 1ex;
margin: 1ex;
}
#task-list .state-button,
@ -7,7 +10,11 @@
}
window {
background-color: #d6d5d4;
}
#task-list .task-name {
}
border: none;
border-bottom: 1px solid #ccc;
border-radius: 0;
}