[Goodies-commits] r7008 - in xfce4-screenshooter/trunk: . lib

Jerome Guelfucci jeromeg at xfce.org
Fri Mar 27 18:52:36 CET 2009


Author: jeromeg
Date: 2009-03-27 17:52:36 +0000 (Fri, 27 Mar 2009)
New Revision: 7008

Modified:
   xfce4-screenshooter/trunk/ChangeLog
   xfce4-screenshooter/trunk/lib/screenshooter-dialogs.c
Log:
* lib/screenshooter-dialogs.c:
  - remove some unused variables.
  - reduce the spacing between the two top columns.
  - Remove the ":" in the "After capturing:" label.
  - correctly set the spacing of the 'After capturing' section.


Modified: xfce4-screenshooter/trunk/ChangeLog
===================================================================
--- xfce4-screenshooter/trunk/ChangeLog	2009-03-27 14:37:29 UTC (rev 7007)
+++ xfce4-screenshooter/trunk/ChangeLog	2009-03-27 17:52:36 UTC (rev 7008)
@@ -1,3 +1,11 @@
+2009-03-27 jeromeg
+
+  * lib/screenshooter-dialogs.c:
+    - remove some unused variables.
+    - reduce the spacing between the two top columns.
+    - Remove the ":" in the "After capturing:" label.
+    - correctly set the spacing of the 'After capturing' section.
+
 2009-03-26 jeromeg
 
   New improved interface.

Modified: xfce4-screenshooter/trunk/lib/screenshooter-dialogs.c
===================================================================
--- xfce4-screenshooter/trunk/lib/screenshooter-dialogs.c	2009-03-27 14:37:29 UTC (rev 7007)
+++ xfce4-screenshooter/trunk/lib/screenshooter-dialogs.c	2009-03-27 17:52:36 UTC (rev 7008)
@@ -714,14 +714,13 @@
   GtkWidget *options_main_box, *options_label, *options_alignment, *options_box;
   GtkWidget *save_checkbox;
   
-  GtkWidget *actions_main_box, *actions_box, *actions_label, *actions_alignment;
+  GtkWidget *actions_main_box, *actions_label, *actions_alignment;
   
-  GtkWidget *save_box, *save_radio_button;
-  GtkWidget *dir_chooser;
+  GtkWidget *save_radio_button, *dir_chooser;
     
   GtkWidget *clipboard_radio_button;
     
-  GtkWidget *open_with_box, *open_with_radio_button;
+  GtkWidget *open_with_radio_button;
   
   GtkListStore *liststore;
   GtkWidget *combobox;
@@ -791,7 +790,7 @@
 
   capture_table = gtk_table_new (2, 2, FALSE);
 
-  gtk_table_set_col_spacings (GTK_TABLE (capture_table), 35);
+  gtk_table_set_col_spacings (GTK_TABLE (capture_table), 20);
 
   gtk_box_pack_start (GTK_BOX (vbox), capture_table, TRUE, TRUE, 0);
   gtk_widget_show (capture_table);
@@ -1006,7 +1005,7 @@
   options_label = gtk_label_new ("");
 
   gtk_label_set_markup (GTK_LABEL(options_label),
-  _("<span weight=\"bold\" stretch=\"semiexpanded\">After capturing:</span>"));
+  _("<span weight=\"bold\" stretch=\"semiexpanded\">After capturing</span>"));
   
 	gtk_misc_set_alignment(GTK_MISC (options_label), 0, 0); 
   gtk_widget_show (options_label);
@@ -1024,7 +1023,7 @@
 
   /* Create the options box to be stored in the options alignment*/
 
-  options_box = gtk_vbox_new (FALSE, 0);
+  options_box = gtk_vbox_new (FALSE, 6);
   gtk_container_add (GTK_CONTAINER (options_alignment), options_box);
   gtk_container_set_border_width (GTK_CONTAINER (options_box), 0);
   gtk_widget_show (options_box);




More information about the Goodies-commits mailing list