never code on an empty stomach
This commit is contained in:
parent
9609c7f5ec
commit
c7a75a5ca8
1 changed files with 6 additions and 6 deletions
|
@ -299,16 +299,16 @@ void menu_show(gchar *name, gint x, gint y, ObClient *client)
|
||||||
menu_frame_hide_all();
|
menu_frame_hide_all();
|
||||||
|
|
||||||
frame = menu_frame_new(self, client);
|
frame = menu_frame_new(self, client);
|
||||||
if (client && x < 0 && y < 0)
|
if (client && x < 0 && y < 0) {
|
||||||
menu_frame_move(frame,
|
x = client->frame->area.x + client->frame->size.left;
|
||||||
client->frame->area.x + client->frame->size.left,
|
y = client->frame->area.y + client->frame->size.top;
|
||||||
client->frame->area.y + client->frame->size.top);
|
menu_frame_move(frame, x, y);
|
||||||
else
|
} else
|
||||||
menu_frame_move(frame,
|
menu_frame_move(frame,
|
||||||
x - ob_rr_theme->bwidth, y - ob_rr_theme->bwidth);
|
x - ob_rr_theme->bwidth, y - ob_rr_theme->bwidth);
|
||||||
for (i = 0; i < screen_num_monitors; ++i) {
|
for (i = 0; i < screen_num_monitors; ++i) {
|
||||||
Rect *a = screen_physical_area_monitor(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;
|
frame->monitor = i;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue