# HG changeset patch # User Sadrul Habib Chowdhury # Date 1190029185 0 # Node ID bbe97e92919de6f73ef99511d9580b7a8cc1d1d7 # Parent ac6bf49cd5ba99558ed250832170ebd1290e1446 Fix #3131 ('Ctrl , and Ctrl . moving tabs incorrectly'). Thanks to ftmichael for reporting the bug. diff -r ac6bf49cd5ba -r bbe97e92919d pidgin/gtkconv.c --- 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 */