Add C-A-PgUp and C-A-PgDown as alternatives to the A-less variants.

2003-03-29  Matthias Clasen  <maclas@gmx.de>

	* gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and
	C-A-PgDown as alternatives to the A-less variants.  (#97860)
This commit is contained in:
Matthias Clasen 2003-03-28 23:44:23 +00:00 committed by Matthias Clasen
parent b4c81288e4
commit 357833d9a3
6 changed files with 32 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2003-03-29 Matthias Clasen <maclas@gmx.de>
* gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and
C-A-PgDown as alternatives to the A-less variants. (This slipped
in accidentally some time ago). (#97860)
2003-03-26 Sven Neumann <sven@gimp.org>
* gtk/gtktreeview.c: rewrote the function that does node and arrow

View File

@ -1,3 +1,9 @@
2003-03-29 Matthias Clasen <maclas@gmx.de>
* gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and
C-A-PgDown as alternatives to the A-less variants. (This slipped
in accidentally some time ago). (#97860)
2003-03-26 Sven Neumann <sven@gimp.org>
* gtk/gtktreeview.c: rewrote the function that does node and arrow

View File

@ -1,3 +1,9 @@
2003-03-29 Matthias Clasen <maclas@gmx.de>
* gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and
C-A-PgDown as alternatives to the A-less variants. (This slipped
in accidentally some time ago). (#97860)
2003-03-26 Sven Neumann <sven@gimp.org>
* gtk/gtktreeview.c: rewrote the function that does node and arrow

View File

@ -1,3 +1,9 @@
2003-03-29 Matthias Clasen <maclas@gmx.de>
* gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and
C-A-PgDown as alternatives to the A-less variants. (This slipped
in accidentally some time ago). (#97860)
2003-03-26 Sven Neumann <sven@gimp.org>
* gtk/gtktreeview.c: rewrote the function that does node and arrow

View File

@ -1,3 +1,9 @@
2003-03-29 Matthias Clasen <maclas@gmx.de>
* gtk/gtknotebook.c (gtk_notebook_class_init): Add C-A-PgUp and
C-A-PgDown as alternatives to the A-less variants. (This slipped
in accidentally some time ago). (#97860)
2003-03-26 Sven Neumann <sven@gimp.org>
* gtk/gtktreeview.c: rewrote the function that does node and arrow

View File

@ -574,11 +574,11 @@ gtk_notebook_class_init (GtkNotebookClass *class)
G_TYPE_INT, 1);
gtk_binding_entry_add_signal (binding_set,
GDK_Page_Up, GDK_CONTROL_MASK|GDK_MOD1_MASK,
GDK_Page_Up, GDK_CONTROL_MASK | GDK_MOD1_MASK,
"change_current_page", 1,
G_TYPE_INT, -1);
gtk_binding_entry_add_signal (binding_set,
GDK_Page_Down, GDK_CONTROL_MASK|GDK_MOD1_MASK,
GDK_Page_Down, GDK_CONTROL_MASK | GDK_MOD1_MASK,
"change_current_page", 1,
G_TYPE_INT, 1);