forked from AuroraMiddleware/gtk
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:
parent
b4c81288e4
commit
357833d9a3
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user