]> Dogcows Code - chaz/openbox/commitdiff
never code on an empty stomach
authorMikael Magnusson <mikachu@comhem.se>
Wed, 14 Sep 2005 18:01:58 +0000 (18:01 +0000)
committerMikael Magnusson <mikachu@comhem.se>
Wed, 14 Sep 2005 18:01:58 +0000 (18:01 +0000)
openbox/menu.c

index 3db8e822556ed4e5c66046224064750180f02991..d4e444182dfee20370f4cda0c74e67849d335995 100644 (file)
@@ -299,16 +299,16 @@ void menu_show(gchar *name, gint x, gint y, ObClient *client)
     menu_frame_hide_all();
 
     frame = menu_frame_new(self, client);
-    if (client && x < 0 && y < 0)
-        menu_frame_move(frame,
-                        client->frame->area.x + client->frame->size.left,
-                        client->frame->area.y + client->frame->size.top);
-    else
+    if (client && x < 0 && y < 0) {
+        x = client->frame->area.x + client->frame->size.left;
+        y = client->frame->area.y + client->frame->size.top;
+        menu_frame_move(frame, x, y);
+    else
         menu_frame_move(frame,
                         x - ob_rr_theme->bwidth, y - ob_rr_theme->bwidth);
     for (i = 0; i < screen_num_monitors; ++i) {
         Rect *a = screen_physical_area_monitor(i);
-        if (RECT_CONTAINS(*a, frame->area.x, frame->area.y)) {
+        if (RECT_CONTAINS(*a, x, y)) {
             frame->monitor = i;
             break;
         }
This page took 0.023339 seconds and 4 git commands to generate.