From 3b474bbd3eff26aa5c3d8d7d29e2c7772f2ec058 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Tue, 1 Mar 2016 01:15:30 +0100 Subject: [PATCH] Minor improvement to the preferences dialog --- src/camera.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/camera.c b/src/camera.c index 4e78ad1..79f2884 100644 --- a/src/camera.c +++ b/src/camera.c @@ -717,6 +717,7 @@ static void _preferences_window(Camera * camera) notebook = gtk_notebook_new(); /* picture */ vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 4); + gtk_container_set_border_width(GTK_CONTAINER(vbox), 4); camera->pr_hflip = gtk_check_button_new_with_mnemonic( _("Flip _horizontally")); gtk_box_pack_start(GTK_BOX(vbox), camera->pr_hflip, FALSE, TRUE, 0); @@ -749,6 +750,7 @@ static void _preferences_window(Camera * camera) gtk_label_new(_("Picture"))); /* snapshots */ vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 4); + gtk_container_set_border_width(GTK_CONTAINER(vbox), 4); /* format */ widget = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 4); gtk_box_pack_start(GTK_BOX(widget), gtk_label_new(_("Format: ")),