aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-08-14 16:04:34 +0800
committerChris Lahey <clahey@src.gnome.org>2001-08-14 16:04:34 +0800
commit3baba3b25e964165394499c2d390932a45973ad2 (patch)
treeb7c016d9cd63ca893f7ca7fe181a0a613ea5e59c /widgets
parent6d8437d4a9a80eaa0b33911832b29a823fa5a5b7 (diff)
downloadgsoc2013-evolution-3baba3b25e964165394499c2d390932a45973ad2.tar
gsoc2013-evolution-3baba3b25e964165394499c2d390932a45973ad2.tar.gz
gsoc2013-evolution-3baba3b25e964165394499c2d390932a45973ad2.tar.bz2
gsoc2013-evolution-3baba3b25e964165394499c2d390932a45973ad2.tar.lz
gsoc2013-evolution-3baba3b25e964165394499c2d390932a45973ad2.tar.xz
gsoc2013-evolution-3baba3b25e964165394499c2d390932a45973ad2.tar.zst
gsoc2013-evolution-3baba3b25e964165394499c2d390932a45973ad2.zip
Handle GDK_KP_Up and GDK_KP_Down here.
2001-08-14 Christopher James Lahey <clahey@ximian.com> * gal/widgets/e-selection-model.c (e_selection_model_key_press): Handle GDK_KP_Up and GDK_KP_Down here. svn path=/trunk/; revision=11997
Diffstat (limited to 'widgets')
-rw-r--r--widgets/misc/e-selection-model.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/misc/e-selection-model.c b/widgets/misc/e-selection-model.c
index 538a767a74..ec641e8373 100644
--- a/widgets/misc/e-selection-model.c
+++ b/widgets/misc/e-selection-model.c
@@ -514,9 +514,11 @@ e_selection_model_key_press (ESelectionModel *selection,
{
switch (key->keyval) {
case GDK_Up:
+ case GDK_KP_Up:
return move_selection(selection, TRUE, key->state);
break;
case GDK_Down:
+ case GDK_KP_Down:
return move_selection(selection, FALSE, key->state);
break;
case GDK_space: