Fix #3131 ('Ctrl , and Ctrl . moving tabs incorrectly'). Thanks to ftmichael for reporting the bug.

Mon, 17 Sep 2007 11:39:45 +0000

author
Sadrul Habib Chowdhury <sadrul@pidgin.im>
date
Mon, 17 Sep 2007 11:39:45 +0000
changeset 20358
0bb867e4310c
parent 20354
e5f940479e63
child 20359
26c0cc40a928

Fix #3131 ('Ctrl , and Ctrl . moving tabs incorrectly'). Thanks to ftmichael for reporting the bug.

pidgin/gtkconv.c file | annotate | diff | comparison | revisions
--- a/pidgin/gtkconv.c	Mon Sep 17 04:29:46 2007 +0000
+++ b/pidgin/gtkconv.c	Mon Sep 17 11:39:45 2007 +0000
@@ -1913,6 +1913,7 @@
 				gtk_notebook_reorder_child(GTK_NOTEBOOK(win->notebook),
 						gtk_notebook_get_nth_page(GTK_NOTEBOOK(win->notebook), curconv),
 						curconv - 1);
+				return TRUE;
 				break;
 
 			case GDK_period:
@@ -1923,6 +1924,7 @@
 #else
 						(curconv + 1) % g_list_length(GTK_NOTEBOOK(win->notebook)->children));
 #endif
+				return TRUE;
 				break;
 
 		} /* End of switch */

mercurial