[Xfce4-commits] [panel-plugins/xfce4-time-out-plugin] 01/01: Left-align labels for time settings (bug #6346)

noreply at xfce.org noreply at xfce.org
Wed Nov 29 09:51:45 CET 2017


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 panel-plugins/xfce4-time-out-plugin.

commit 262e666865a4894a3f54ce792d8d7b7cba2ad550
Author: Iris Ilexiris <iris.ilexiris at gmail.com>
Date:   Wed Nov 29 09:51:20 2017 +0100

    Left-align labels for time settings (bug #6346)
---
 panel-plugin/time-out.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/panel-plugin/time-out.c b/panel-plugin/time-out.c
index 593292b..0546d92 100644
--- a/panel-plugin/time-out.c
+++ b/panel-plugin/time-out.c
@@ -503,8 +503,8 @@ time_out_configure (XfcePanelPlugin *plugin,
 
   /* Create break countdown time label */
   label = gtk_label_new (_("Time between breaks:"));
-  gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
-  gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK, GTK_FILL, 1.0, 0.5);
+  gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
+  gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_FILL, GTK_FILL, 1.0, 0.5);
   gtk_widget_show (label);
 
   /* Create break countdown time minute spin */
@@ -527,8 +527,8 @@ time_out_configure (XfcePanelPlugin *plugin,
 
   /* Create lock countdown time label */
   label = gtk_label_new (_("Break length:"));
-  gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
-  gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3, GTK_SHRINK, GTK_FILL, 1.0, 0.5);
+  gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
+  gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3, GTK_FILL, GTK_FILL, 1.0, 0.5);
   gtk_widget_show (label);
 
   /* Create lock countdown time spins */
@@ -545,8 +545,8 @@ time_out_configure (XfcePanelPlugin *plugin,
 
   /* Create postpone countdown time label */
   label = gtk_label_new (_("Postpone length:"));
-  gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
-  gtk_table_attach (GTK_TABLE (table), label, 0, 1, 3, 4, GTK_SHRINK, GTK_FILL, 1.0, 0.5);
+  gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
+  gtk_table_attach (GTK_TABLE (table), label, 0, 1, 3, 4, GTK_FILL, GTK_FILL, 1.0, 0.5);
   gtk_widget_show (label);
 
   /* Create postpone countdown time spins */

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list