changeset 20103:bbe97e92919d

Fix #3131 ('Ctrl , and Ctrl . moving tabs incorrectly'). Thanks to ftmichael for reporting the bug.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 17 Sep 2007 11:39:45 +0000
parents ac6bf49cd5ba
children 2975adac8c5d
files pidgin/gtkconv.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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 */