]> Dogcows Code - chaz/openbox/blobdiff - openbox/event.c
Merge branch 'master' into chaz
[chaz/openbox] / openbox / event.c
index 15a7a4790569a5d510b9f59c701a9cbdbcc3e21f..1b3a0e4674f85e8636ba315e87202da8bc5d50ad 100644 (file)
@@ -698,7 +698,6 @@ static void event_process(const XEvent *ec, gpointer data)
     if (e->type == ButtonPress || e->type == ButtonRelease) {
         ObWindow *w;
         static guint pressed = 0;
-        static Window pressed_win = None;
 
         event_sourcetime = event_curtime;
 
@@ -719,10 +718,8 @@ static void event_process(const XEvent *ec, gpointer data)
             if (prompt && !used)
                 used = event_handle_prompt(prompt, e);
 
-            if (e->type == ButtonPress) {
+            if (e->type == ButtonPress)
                 pressed = e->xbutton.button;
-                pressed_win = e->xbutton.subwindow;
-            }
         }
     }
     else if (e->type == KeyPress || e->type == KeyRelease ||
@@ -2007,9 +2004,9 @@ static void event_handle_menu(ObMenuFrame *frame, XEvent *ev)
 
     switch (ev->type) {
     case MotionNotify:
-        // We need to catch MotionNotify in addition to EnterNotify because
-        // it is possible for the menu to be opened under the mouse cursor, and
-        // moving the mouse should select the item.
+        /* We need to catch MotionNotify in addition to EnterNotify because
+           it is possible for the menu to be opened under the mouse cursor, and
+           moving the mouse should select the item. */
         if ((e = g_hash_table_lookup(menu_frame_map, &ev->xmotion.window))) {
             if (e->ignore_enters)
                 --e->ignore_enters;
@@ -2032,7 +2029,7 @@ static void event_handle_menu(ObMenuFrame *frame, XEvent *ev)
         }
         break;
     case LeaveNotify:
-        /*ignore leaves when we're already in the window */
+        /* ignore leaves when we're already in the window */
         if (ev->xcrossing.detail == NotifyInferior)
             break;
 
This page took 0.022328 seconds and 4 git commands to generate.