highlight for motion events in the menu too, this is useful when the enter gets ignor...
authorDana Jansens <danakj@orodu.net>
Sun, 22 Apr 2007 03:18:55 +0000 (03:18 +0000)
committerDana Jansens <danakj@orodu.net>
Sun, 22 Apr 2007 03:18:55 +0000 (03:18 +0000)
openbox/event.c

index ced93e0..67afabc 100644 (file)
@@ -1300,6 +1300,11 @@ static void event_handle_menu(XEvent *ev)
         {
             menu_frame_select(e->frame, NULL);
         }
+    case MotionNotify:   
+        if ((e = menu_entry_frame_under(ev->xmotion.x_root,   
+                                        ev->xmotion.y_root)))
+            menu_frame_select(e->frame, e);   
+        break;
     case KeyPress:
         if (ev->xkey.keycode == ob_keycode(OB_KEY_ESCAPE))
             menu_frame_hide_all();