X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.c;h=6ba52c8959f13d140fbea9a3f5f0e1a7ae3adb08;hb=aaba799e1d7d48f33de3eb7b8956f5572c013141;hp=4c745b2dafc538f9f62305daa2a81d68fe1b7cee;hpb=a1f882b264505885228d1d47d65f11a5f460a187;p=chaz%2Fopenbox diff --git a/openbox/action.c b/openbox/action.c index 4c745b2d..6ba52c89 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -60,8 +60,12 @@ static void client_action_end(union ActionData *data, gboolean allow_enters) event will come as a GrabNotify which is ignored, so this makes a fake enter event */ - if ((c = client_under_pointer()) && c != data->any.c) + if ((c = client_under_pointer()) && c != data->any.c) { + ob_debug_type(OB_DEBUG_FOCUS, + "Generating fake enter because we did a " + "mouse-event action"); event_enter_client(c); + } } } } @@ -1426,11 +1430,12 @@ void action_move_to_center(union ActionData *data) { ObClient *c = data->client.any.c; Rect *area; - area = screen_area_monitor(c->desktop, 0); + area = screen_area(c->desktop, client_monitor(c), NULL); client_action_start(data); client_move(c, area->width / 2 - c->area.width / 2, area->height / 2 - c->area.height / 2); client_action_end(data, FALSE); + g_free(area); } void action_resize_relative_horz(union ActionData *data) @@ -1893,7 +1898,7 @@ void action_growtoedge(union ActionData *data) ObClient *c = data->diraction.any.c; Rect *a; - a = screen_area(c->desktop); + a = screen_area(c->desktop, SCREEN_AREA_ALL_MONITORS, &c->frame->area); x = c->frame->area.x; y = c->frame->area.y; /* get the unshaded frame's dimensions..if it is shaded */ @@ -1952,6 +1957,7 @@ void action_growtoedge(union ActionData *data) client_action_start(data); client_move_resize(c, x, y, width, height); client_action_end(data, FALSE); + g_free(a); } void action_send_to_layer(union ActionData *data)