X-Git-Url: http://git.scottworley.com/nix-env-apps/blobdiff_plain/d8a00b09faaa7038eb00be860f5eacad32161f04..0ac29b2ecacf45c6b9d6b552301acce54fe24fce:/apps.py diff --git a/apps.py b/apps.py index 59aa4a9..77fb563 100644 --- a/apps.py +++ b/apps.py @@ -83,6 +83,10 @@ def on_apply(_: Any) -> None: def make_button(label: str, action: Callable[[Any], None]) -> Gtk.Button: button = Gtk.Button(label=label) button.connect('clicked', action) + button.set_margin_top(10) + button.set_margin_start(10) + button.set_margin_end(10) + button.set_margin_bottom(10) return button