[hyena/banshee-stable] [ListView] Fix H/L keyboard nav



commit ab7d43f850022c6da9e20324aa9a2d1148366e03
Author: Gabriel Burt <gabriel burt gmail com>
Date:   Sun Oct 31 22:07:04 2010 -0500

    [ListView] Fix H/L keyboard nav

 .../ListView/ListView_Interaction.cs               |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/Hyena.Gui/Hyena.Data.Gui/ListView/ListView_Interaction.cs b/Hyena.Gui/Hyena.Data.Gui/ListView/ListView_Interaction.cs
index adc1df7..a15453e 100644
--- a/Hyena.Gui/Hyena.Data.Gui/ListView/ListView_Interaction.cs
+++ b/Hyena.Gui/Hyena.Data.Gui/ListView/ListView_Interaction.cs
@@ -205,6 +205,8 @@ namespace Hyena.Data.Gui
                         HeaderFocused = false;
                     }
                     break;
+                case Gdk.Key.l:
+                case Gdk.Key.L:
                 case Gdk.Key.Right:
                 case Gdk.Key.KP_Right:
                     handled = true;
@@ -215,6 +217,8 @@ namespace Hyena.Data.Gui
                         InvalidateHeader ();
                     }
                     break;
+                case Gdk.Key.h:
+                case Gdk.Key.H:
                 case Gdk.Key.Left:
                 case Gdk.Key.KP_Left:
                     handled = true;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]