From 937638c582e59b26172abbb3568a43d6bda25055 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Wed, 1 Dec 2021 13:07:01 +0100 Subject: [PATCH] entry: Set a margin on the grids Less heavy on the eyes. --- tools/entry.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/entry.py b/tools/entry.py index 0a15c0f3..e1ed27fd 100644 --- a/tools/entry.py +++ b/tools/entry.py @@ -14,6 +14,8 @@ except AttributeError: def new_grid(items, set_type): grid = Gtk.Grid(orientation='vertical', column_spacing=8, row_spacing=8) + grid.props.margin = 6 + i = 0 for text, value in items: l = Gtk.Label(label=text)