[Commits] foldersel.c 1.26.2.49 1.26.2.50 prefs_actions.c 1.60.2.83 1.60.2.84 prefs_filtering_action.c 1.1.4.80 1.1.4.81 prefs_matcher.c 1.43.2.97 1.43.2.98 quote_fmt.c 1.8.2.47 1.8.2.48

colin at claws-mail.org colin at claws-mail.org
Fri Nov 16 17:10:11 CET 2012


Update of /home/claws-mail/claws/src
In directory srv:/tmp/cvs-serv1507/src

Modified Files:
      Tag: gtk2
	foldersel.c prefs_actions.c prefs_filtering_action.c 
	prefs_matcher.c quote_fmt.c 
Log Message:
2012-11-16 [colin]	3.9.0cvs10

	* src/foldersel.c
	* src/prefs_actions.c
	* src/prefs_filtering_action.c
	* src/prefs_matcher.c
	* src/quote_fmt.c
	* src/gtk/description_window.c
	* src/gtk/description_window.h
	* src/gtk/inputdialog.c
	* src/gtk/manage_window.c
	* src/gtk/quicksearch.c
		Try to better fix focus problems. Should address:
		Bug #2774
		Bug #2624
		Bug #1963
		Please check using your favorite WM that the following works:
		Information button (Quicksearch, Templates, 'Test' filtering 
		condition)
		Folder selection (Move/Copy contextual menu,
		various preferences, including 'New folder').
		Tested with XFCE, Gnome Shell and Windows.
		

Index: prefs_actions.c
===================================================================
RCS file: /home/claws-mail/claws/src/prefs_actions.c,v
retrieving revision 1.60.2.83
retrieving revision 1.60.2.84
diff -u -d -r1.60.2.83 -r1.60.2.84
--- prefs_actions.c	16 Sep 2012 21:56:20 -0000	1.60.2.83
+++ prefs_actions.c	16 Nov 2012 16:10:08 -0000	1.60.2.84
@@ -995,6 +995,7 @@
 static DescriptionWindow actions_desc_win = { 
 	NULL,
 	NULL,
+	TRUE,
 	2,
 	N_("Actions"),
   	N_("The Actions feature is a way for the user to launch "

Index: prefs_filtering_action.c
===================================================================
RCS file: /home/claws-mail/claws/src/prefs_filtering_action.c,v
retrieving revision 1.1.4.80
retrieving revision 1.1.4.81
diff -u -d -r1.1.4.80 -r1.1.4.81
--- prefs_filtering_action.c	15 Nov 2012 13:41:05 -0000	1.1.4.80
+++ prefs_filtering_action.c	16 Nov 2012 16:10:08 -0000	1.1.4.81
@@ -1267,7 +1267,8 @@
 
 static DescriptionWindow exec_desc_win = { 
 	NULL,
-        NULL, 
+        NULL,
+	TRUE,
         2,
         N_("Filtering Action: 'Execute'"),
 	N_("'Execute' allows you to send a message or message element "

Index: foldersel.c
===================================================================
RCS file: /home/claws-mail/claws/src/foldersel.c,v
retrieving revision 1.26.2.49
retrieving revision 1.26.2.50
diff -u -d -r1.26.2.49 -r1.26.2.50
--- foldersel.c	27 May 2012 17:30:50 -0000	1.26.2.49
+++ foldersel.c	16 Nov 2012 16:10:08 -0000	1.26.2.50
@@ -178,7 +178,7 @@
 	gtk_widget_grab_focus(ok_button);
 	gtk_widget_grab_focus(treeview);
 
-	gtk_widget_show(window);
+	gtk_window_present(window);
 	gtk_window_set_modal(GTK_WINDOW(window), TRUE);
 	manage_window_set_transient(GTK_WINDOW(window));
 
@@ -187,10 +187,8 @@
 	while (finished == FALSE)
 		gtk_main_iteration();
 
-	gtk_widget_hide(window);
-	gtk_window_set_modal(GTK_WINDOW(window), FALSE);
-	gtk_entry_set_text(GTK_ENTRY(entry), "");
-	gtk_tree_store_clear(tree_store);
+	gtk_widget_destroy(window);
+	window = NULL;
 
 	if (!cancelled &&
 	    selected_item && (selected_item->path || root_selectable)) {

Index: quote_fmt.c
===================================================================
RCS file: /home/claws-mail/claws/src/quote_fmt.c,v
retrieving revision 1.8.2.47
retrieving revision 1.8.2.48
diff -u -d -r1.8.2.47 -r1.8.2.48
--- quote_fmt.c	7 Jul 2012 07:09:30 -0000	1.8.2.47
+++ quote_fmt.c	16 Nov 2012 16:10:08 -0000	1.8.2.48
@@ -104,6 +104,7 @@
 static DescriptionWindow quote_desc_win = { 
         NULL,
 	NULL,
+	TRUE,
         2,
         N_("Description of symbols"),
 	N_("The following symbols and commands can be used:"),

Index: prefs_matcher.c
===================================================================
RCS file: /home/claws-mail/claws/src/prefs_matcher.c,v
retrieving revision 1.43.2.97
retrieving revision 1.43.2.98
diff -u -d -r1.43.2.97 -r1.43.2.98
--- prefs_matcher.c	15 Nov 2012 13:41:05 -0000	1.43.2.97
+++ prefs_matcher.c	16 Nov 2012 16:10:08 -0000	1.43.2.98
@@ -2139,6 +2139,7 @@
 static DescriptionWindow test_desc_win = { 
 	NULL,
         NULL, 
+	TRUE,
         2,
         N_("Match Type: 'Test'"),
 	N_("'Test' allows you to test a message or message element "



More information about the Commits mailing list