summaryrefslogtreecommitdiff
path: root/openbox/menu.c
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2005-09-14 18:01:58 +0000
committerMikael Magnusson <mikachu@comhem.se>2005-09-14 18:01:58 +0000
commitc7a75a5ca893b10b06deb2f42afc4995cb5cbf1c (patch)
tree499e0f59be39fe4ba1f719414030f4d1fc6fa3eb /openbox/menu.c
parent9609c7f5ecadc488c450433925921ee2de44f033 (diff)
never code on an empty stomach
Diffstat (limited to 'openbox/menu.c')
-rw-r--r--openbox/menu.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/openbox/menu.c b/openbox/menu.c
index 3db8e822..d4e44418 100644
--- a/openbox/menu.c
+++ b/openbox/menu.c
@@ -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;
}