[evolution-patches] patch for 41040, 41036, 41038



This patch changes the padding/spacing in the semi-widely used
e-string-requesting utility. It fixes bugs #41040, 41036 and 41038. 


-- 
Anna Marie Dirks <anna ximian com>

Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/e-util/ChangeLog,v
retrieving revision 1.380
diff -u -u -r1.380 ChangeLog
--- ChangeLog	16 Apr 2003 17:01:24 -0000	1.380
+++ ChangeLog	18 Apr 2003 16:58:14 -0000
@@ -1,3 +1,8 @@
+2003-04-18  Anna Marie Dirks  <anna ximian com>
+
+	* e-request.c (e_request_string): Added appropriate spacing/padding 
+	to the rename dialogs. Fixes bugs #41040, #41036, #41038
+
 2003-04-14  Jeffrey Stedfast  <fejj ximian com>
 
 	* e-sexp.c: Finished an #if 0'd out port to GObject from an #if
Index: e-request.c
===================================================================
RCS file: /cvs/gnome/evolution/e-util/e-request.c,v
retrieving revision 1.9
diff -u -u -r1.9 e-request.c
--- e-request.c	6 Mar 2003 18:25:23 -0000	1.9
+++ e-request.c	18 Apr 2003 16:58:14 -0000
@@ -67,12 +67,14 @@
 					      NULL);
 	gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
 	gtk_window_set_default_size (GTK_WINDOW (dialog), 275, -1);
+	gtk_container_set_border_width (GTK_CONTAINER (dialog), 6); 
 
 	vbox = GTK_DIALOG (dialog)->vbox;
 	
 	prompt_label = gtk_label_new (prompt);
-	gtk_box_pack_start (GTK_BOX (vbox), prompt_label, TRUE, TRUE, 3);
-	
+	gtk_box_pack_start (GTK_BOX (vbox), prompt_label, TRUE, TRUE, 6);
+	gtk_box_set_spacing (GTK_BOX (vbox), 6); 
+
 	entry = gtk_entry_new ();
 	gtk_entry_set_text (GTK_ENTRY (entry), default_string);
 	gtk_editable_select_region (GTK_EDITABLE (entry), 0, -1);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]