mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Don't bind GDK_Page_Up and GDK_Page_Down twice. (#168333, Hazael Maldonado
2005-05-16 Matthias Clasen <mclasen@redhat.com> * gtk/gtkscale.c (gtk_scale_class_init): Don't bind GDK_Page_Up and GDK_Page_Down twice. (#168333, Hazael Maldonado Torres)
This commit is contained in:
parent
911a8a63c3
commit
c87d85a5aa
@ -1,7 +1,10 @@
|
||||
2005-05-16 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkscale.c (gtk_scale_class_init): Don't bind GDK_Page_Up
|
||||
and GDK_Page_Down twice. (#168333, Hazael Maldonado Torres)
|
||||
|
||||
* gtk/gtkentry.c (cursor_blinks): Don't blink the cursor if
|
||||
the entry is not editable. (#304171,Nikos Kouremenos)
|
||||
the entry is not editable. (#304171, Nikos Kouremenos)
|
||||
|
||||
* gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_constructor):
|
||||
Make sure the action of the button and the dialog are in sync,
|
||||
|
@ -1,7 +1,10 @@
|
||||
2005-05-16 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkscale.c (gtk_scale_class_init): Don't bind GDK_Page_Up
|
||||
and GDK_Page_Down twice. (#168333, Hazael Maldonado Torres)
|
||||
|
||||
* gtk/gtkentry.c (cursor_blinks): Don't blink the cursor if
|
||||
the entry is not editable. (#304171,Nikos Kouremenos)
|
||||
the entry is not editable. (#304171, Nikos Kouremenos)
|
||||
|
||||
* gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_constructor):
|
||||
Make sure the action of the button and the dialog are in sync,
|
||||
|
@ -1,7 +1,10 @@
|
||||
2005-05-16 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkscale.c (gtk_scale_class_init): Don't bind GDK_Page_Up
|
||||
and GDK_Page_Down twice. (#168333, Hazael Maldonado Torres)
|
||||
|
||||
* gtk/gtkentry.c (cursor_blinks): Don't blink the cursor if
|
||||
the entry is not editable. (#304171,Nikos Kouremenos)
|
||||
the entry is not editable. (#304171, Nikos Kouremenos)
|
||||
|
||||
* gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_constructor):
|
||||
Make sure the action of the button and the dialog are in sync,
|
||||
|
@ -266,10 +266,10 @@ gtk_scale_class_init (GtkScaleClass *class)
|
||||
add_slider_binding (binding_set, GDK_KP_Down, GDK_CONTROL_MASK,
|
||||
GTK_SCROLL_PAGE_DOWN);
|
||||
|
||||
add_slider_binding (binding_set, GDK_Page_Up, 0,
|
||||
add_slider_binding (binding_set, GDK_Page_Up, GDK_CONTROL_MASK,
|
||||
GTK_SCROLL_PAGE_LEFT);
|
||||
|
||||
add_slider_binding (binding_set, GDK_KP_Page_Up, 0,
|
||||
add_slider_binding (binding_set, GDK_KP_Page_Up, GDK_CONTROL_MASK,
|
||||
GTK_SCROLL_PAGE_LEFT);
|
||||
|
||||
add_slider_binding (binding_set, GDK_Page_Up, 0,
|
||||
@ -278,10 +278,10 @@ gtk_scale_class_init (GtkScaleClass *class)
|
||||
add_slider_binding (binding_set, GDK_KP_Page_Up, 0,
|
||||
GTK_SCROLL_PAGE_UP);
|
||||
|
||||
add_slider_binding (binding_set, GDK_Page_Down, 0,
|
||||
add_slider_binding (binding_set, GDK_Page_Down, GDK_CONTROL_MASK,
|
||||
GTK_SCROLL_PAGE_RIGHT);
|
||||
|
||||
add_slider_binding (binding_set, GDK_KP_Page_Down, 0,
|
||||
add_slider_binding (binding_set, GDK_KP_Page_Down, GDK_CONTROL_MASK,
|
||||
GTK_SCROLL_PAGE_RIGHT);
|
||||
|
||||
add_slider_binding (binding_set, GDK_Page_Down, 0,
|
||||
|
Loading…
Reference in New Issue
Block a user