all repos — openbox @ 04d6bf1e60beef09fb9c5665a9c010a340519afd

openbox fork - make it a bit more like ryudo

show the move coords for where the window will actually be
Dana Jansens danakj@orodu.net
commit

04d6bf1e60beef09fb9c5665a9c010a340519afd

parent

fd89a7eadc4caf62ef5ce4b8ce96216a1b506c5a

1 files changed, 3 insertions(+), 2 deletions(-)

jump to
M openbox/moveresize.copenbox/moveresize.c

@@ -151,12 +151,13 @@ static void do_move()

{ dispatch_move(moveresize_client, &cur_x, &cur_y); - popup_coords("X: %d Y: %d", cur_x, cur_y); - /* get where the client should be */ frame_frame_gravity(moveresize_client->frame, &cur_x, &cur_y); client_configure(moveresize_client, Corner_TopLeft, cur_x, cur_y, start_cw, start_ch, TRUE, FALSE); + + popup_coords("X: %d Y: %d", moveresize_client->frame->area.x, + moveresize_client->frame->area.y); } static void do_resize()