Mercurial > pidgin.yaz
changeset 13354:da2179c099f0
[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 <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Wed, 01 Mar 2006 03:40:45 +0000 |
parents | ba9946650bf7 |
children | d278dac585a5 |
files | src/gtkconv.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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);