Wed, 01 Mar 2006 03:40:45 +0000
[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.
| src/gtkconv.c | file | annotate | diff | comparison | revisions |
--- 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);