add BackSpace accel for previous image action (Fixes bug #324088).

2005-12-19  Lucas Rocha  <lucasr@gnome.org>

        * shell/eog-gtk-ui.xml, shell/eog-window.c: add BackSpace
        accel for previous image action (Fixes bug #324088).
This commit is contained in:
Lucas Rocha 2005-12-19 03:39:11 +00:00 committed by Lucas Almeida Rocha
parent 3123d69ad6
commit e5361c0504
3 changed files with 8 additions and 1 deletions

View file

@ -1,6 +1,11 @@
2005-12-19 Lucas Rocha <lucasr@gnome.org>
* shell/eog-gtk-ui.xml, shell/eog-window.c: add BackSpace
accel for previous image action (Fixes bug #324088).
2005-12-13 Lucas Rocha <lucasr@gnome.org>
* Fix GTK+ dependency version. Now EOG depends on
* configure.in: Fix GTK+ dependency version. Now EOG depends on
GTK+ >= 2.7.1 (Fixes bug #324149).
2005-12-12 Tim Gerla <tim@gerla.net>

View file

@ -74,4 +74,5 @@
<accelerator name="ShiftSpaceBarAccel" action="ShiftSpaceBar"/>
<accelerator name="ReturnAccel" action="Return"/>
<accelerator name="ShiftReturnAccel" action="ShiftReturn"/>
<accelerator name="BackSpaceAccel" action="BackSpace"/>
</ui>

View file

@ -3256,6 +3256,7 @@ static const GtkActionEntry action_entries_image[] = {
{ "ShiftSpaceBar", NULL, N_("_Previous Image"), "<shift>space", NULL, G_CALLBACK (verb_GoPrev_cb) },
{ "Return", NULL, N_("_Next Image"), "Return", NULL, G_CALLBACK (verb_GoNext_cb) },
{ "ShiftReturn", NULL, N_("_Previous Image"), "<shift>Return", NULL, G_CALLBACK (verb_GoPrev_cb) },
{ "BackSpace", NULL, N_("_Previous Image"), "BackSpace", NULL, G_CALLBACK (verb_GoPrev_cb) },
};
static const GtkToggleActionEntry toggle_entries_image[] = {