[Xfce4-commits] [apps/gigolo] 18/26: Better spacing on mount progress dialog
noreply at xfce.org
noreply at xfce.org
Thu Oct 25 08:04:10 CEST 2018
This is an automated email from the git hooks/post-receive script.
l a n d r y p u s h e d a c o m m i t t o b r a n c h m a s t e r
in repository apps/gigolo.
commit 359942b53b5aaa88b4f3e4e9a7298d70407b4de6
Author: Sean Davis <smd.seandavis at gmail.com>
Date: Wed Oct 24 04:52:24 2018 -0400
Better spacing on mount progress dialog
---
src/mountdialog.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/mountdialog.c b/src/mountdialog.c
index 6f27f93..bb64268 100644
--- a/src/mountdialog.c
+++ b/src/mountdialog.c
@@ -94,16 +94,16 @@ static void gigolo_mount_dialog_init(GigoloMountDialog *self)
gtk_window_set_default_size(GTK_WINDOW(self), 200, -1);
gtk_window_set_title(GTK_WINDOW(self), _("Connecting"));
- vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
- gtk_container_set_border_width(GTK_CONTAINER(vbox), 5);
+ vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 6);
+ gtk_container_set_border_width(GTK_CONTAINER(vbox), 12);
gtk_container_add(GTK_CONTAINER(gtk_dialog_get_content_area(GTK_DIALOG(self))), vbox);
priv->label = gtk_label_new(NULL);
gtk_label_set_xalign(GTK_LABEL(priv->label), 0.1);
- gtk_box_pack_start(GTK_BOX(vbox), priv->label, FALSE, FALSE, 6);
+ gtk_box_pack_start(GTK_BOX(vbox), priv->label, FALSE, FALSE, 0);
progress = gtk_progress_bar_new();
- gtk_box_pack_start(GTK_BOX(vbox), progress, FALSE, FALSE, 6);
+ gtk_box_pack_start(GTK_BOX(vbox), progress, FALSE, FALSE, 0);
priv->timer_id = g_timeout_add(250, do_pulse, GTK_PROGRESS_BAR(progress));
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list