Dialogs updates (#252)

* Fix cursor on dialogs and make them fullscreen

* Fix date alignment varying with text length
This commit is contained in:
Alfredo Monclus
2021-09-07 22:30:21 -03:00
committed by GitHub
parent bf0f2d4342
commit 517a6afab8
3 changed files with 11 additions and 5 deletions

View File

@@ -178,6 +178,7 @@ class SystemPanel(ScreenPanel):
date = ndate
label = Gtk.Label("")
label.set_markup("<b>%s</b>\n" % date)
label.set_halign(Gtk.Align.START)
grid.attach(label, 0, i, 1, 1)
i = i + 1