From 190399e6abe76b0e107cef6269203dc60e04fb2d Mon Sep 17 00:00:00 2001 From: 0xMRTT <0xMRTT@tuta.io> Date: Wed, 24 Aug 2022 11:04:51 +0200 Subject: [PATCH] fix: button margin --- src/window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/window.py b/src/window.py index 87eafa7d..7b2a91f4 100644 --- a/src/window.py +++ b/src/window.py @@ -141,6 +141,8 @@ class GradienceMainWindow(Adw.ApplicationWindow): self.apply_button = Gtk.Button() self.apply_button.set_label(_("Apply")) + self.apply_button.set_margin_top(10) + self.apply_button.set_margin_bottom(10) self.apply_button.connect("clicked", self.on_apply_button) self.apply_button.set_css_classes("suggested-action") self.monet_pref_group.set_header_suffix(self.apply_button)