diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-06-22 15:18:43 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-06-22 15:18:43 +0000 |
| commit | 1e6c375fdd1d10ba0b019505436069d21c751945 (patch) | |
| tree | cda9498b820276d335f5416eec51e9d3aa6fa4cf /openbox/resist.c | |
| parent | 06ed8ab6c03337710acba8d6a70781456e979384 (diff) | |
add the moveto action
Diffstat (limited to 'openbox/resist.c')
| -rw-r--r-- | openbox/resist.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openbox/resist.c b/openbox/resist.c index 211a012c..49875fbb 100644 --- a/openbox/resist.c +++ b/openbox/resist.c @@ -36,7 +36,7 @@ void resist_move_windows(ObClient *c, gint resist, gint *x, gint *y) if (!resist) return; - frame_client_gravity(c->frame, x, y, c->area.width, c->area.height); + frame_client_gravity(c->frame, x, y); w = c->frame->area.width; h = c->frame->area.height; @@ -113,7 +113,7 @@ void resist_move_windows(ObClient *c, gint resist, gint *x, gint *y) if (snapx && snapy) break; } - frame_frame_gravity(c->frame, x, y, c->area.width, c->area.height); + frame_frame_gravity(c->frame, x, y); } void resist_move_monitors(ObClient *c, gint resist, gint *x, gint *y) @@ -129,7 +129,7 @@ void resist_move_monitors(ObClient *c, gint resist, gint *x, gint *y) if (!resist) return; - frame_client_gravity(c->frame, x, y, c->area.width, c->area.height); + frame_client_gravity(c->frame, x, y); w = c->frame->area.width; h = c->frame->area.height; @@ -188,7 +188,7 @@ void resist_move_monitors(ObClient *c, gint resist, gint *x, gint *y) g_free(parea); } - frame_frame_gravity(c->frame, x, y, c->area.width, c->area.height); + frame_frame_gravity(c->frame, x, y); } void resist_size_windows(ObClient *c, gint resist, gint *w, gint *h, |
