diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-09-01 02:02:40 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-09-01 02:02:40 +0000 |
| commit | 9d42df6ab4099c9365d3631ea86348a8f21752a0 (patch) | |
| tree | 23137c07f0db03e7904475b6b1c2d26e3df1bb84 /openbox/moveresize.c | |
| parent | a1fdeedbf20de74df8cf438f702a7a3e0de03064 (diff) | |
add urgent actions
add some macros for moving/resizing clients
add 'vibrate' action
Diffstat (limited to 'openbox/moveresize.c')
| -rw-r--r-- | openbox/moveresize.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/openbox/moveresize.c b/openbox/moveresize.c index 8f92f71f..424b8a14 100644 --- a/openbox/moveresize.c +++ b/openbox/moveresize.c @@ -7,6 +7,7 @@ #include "openbox.h" #include "resist.h" #include "popup.h" +#include "moveresize.h" #include "config.h" #include "render/render.h" #include "render/theme.h" @@ -143,10 +144,9 @@ void moveresize_end(gboolean cancel) popup_hide(popup); if (moving) { - client_configure(moveresize_client, OB_CORNER_TOPLEFT, - (cancel ? start_cx : cur_x), - (cancel ? start_cy : cur_y), - start_cw, start_ch, TRUE, TRUE); + client_move(moveresize_client, + (cancel ? start_cx : cur_x), + (cancel ? start_cy : cur_y)); } else { client_configure(moveresize_client, lockcorner, moveresize_client->area.x, @@ -168,8 +168,7 @@ static void do_move(gboolean resist) /* get where the client should be */ frame_frame_gravity(moveresize_client->frame, &cur_x, &cur_y); - client_configure(moveresize_client, OB_CORNER_TOPLEFT, cur_x, cur_y, - start_cw, start_ch, TRUE, FALSE); + client_move(moveresize_client, cur_x, cur_y); /* this would be better with a fixed width font ... XXX can do it better if there are 2 text boxes */ |
