# HG changeset patch # User Richard Laager # Date 1141184445 0 # Node ID da2179c099f072f71960012c5c6ea0b7b9bcf24b # Parent ba9946650bf79cfb78d7c02c5deff4db1af48a00 [gaim-migrate @ 15726] Revert Luke's commit of 1.742. The old behavior, which I'm reinstating, matched up with Ctrl-PageUp/Ctrl-PageDown if a tab is focused. resiak brought this to my attention with a patch. Mark, Nathan, and I agree on this change and I think Daniel does as well. I'll update the documentation to match. committer: Tailor Script diff -r ba9946650bf7 -r da2179c099f0 src/gtkconv.c --- a/src/gtkconv.c Wed Mar 01 03:06:10 2006 +0000 +++ b/src/gtkconv.c Wed Mar 01 03:40:45 2006 +0000 @@ -1880,7 +1880,7 @@ return TRUE; break; - case GDK_Page_Up: + case GDK_Page_Down: case ']': if (!gaim_gtk_conv_window_get_gtkconv_at_index(win, curconv + 1)) gtk_notebook_set_current_page(GTK_NOTEBOOK(win->notebook), 0); @@ -1889,7 +1889,7 @@ return TRUE; break; - case GDK_Page_Down: + case GDK_Page_Up: case '[': if (!gaim_gtk_conv_window_get_gtkconv_at_index(win, curconv - 1)) gtk_notebook_set_current_page(GTK_NOTEBOOK(win->notebook), -1);