summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaximiliano Sandoval R <msandova@gnome.org>2022-07-15 21:04:37 +0200
committerBastien Nocera <hadess@hadess.net>2022-07-15 19:55:18 +0000
commite9b14be8da1c344764e5b95e18654afc5e069b9d (patch)
tree8869485c9e29124928e3922986fbb88b17273561
parent347f4fc7396e757b221bb89a7bdbd3076b0c9916 (diff)
downloadgnome-bluetooth-e9b14be8da1c344764e5b95e18654afc5e069b9d.tar.gz
sendto: Add margins to window
Makes the window look better.
-rw-r--r--sendto/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sendto/main.c b/sendto/main.c
index 4040017d..d2345cb0 100644
--- a/sendto/main.c
+++ b/sendto/main.c
@@ -451,6 +451,10 @@ static void create_window(void)
gtk_window_set_default_size(GTK_WINDOW(dialog), 400, -1);
vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
+ gtk_widget_set_margin_end(vbox, 12);
+ gtk_widget_set_margin_start(vbox, 12);
+ gtk_widget_set_margin_top(vbox, 12);
+ gtk_widget_set_margin_bottom(vbox, 12);
gtk_box_set_spacing(GTK_BOX(vbox), 6);
gtk_window_set_child (GTK_WINDOW(dialog), vbox);