all repos — openbox @ 41a1d2ea7bd8a69dc0eaf1deb3f3bd96a1a579e5

openbox fork - make it a bit more like ryudo

hopefully fix keyboard move and resize refusing to go outside the screen
Mikael Magnusson mikachu@comhem.se
commit

41a1d2ea7bd8a69dc0eaf1deb3f3bd96a1a579e5

parent

629585d990c3a966376374815c698048df0bf05c

1 files changed, 6 insertions(+), 4 deletions(-)

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

@@ -193,9 +193,10 @@ }

static void do_move(gboolean resist) { - if (resist) + if (resist) { resist_move_windows(moveresize_client, &cur_x, &cur_y); - resist_move_monitors(moveresize_client, &cur_x, &cur_y); + resist_move_monitors(moveresize_client, &cur_x, &cur_y); + } /* get where the client should be */ frame_frame_gravity(moveresize_client->frame, &cur_x, &cur_y);

@@ -216,9 +217,10 @@ moveresize_client->frame->size.right;

cur_y += moveresize_client->frame->size.top + moveresize_client->frame->size.bottom; - if (resist) + if (resist) { resist_size_windows(moveresize_client, &cur_x, &cur_y, lockcorner); - resist_size_monitors(moveresize_client, &cur_x, &cur_y, lockcorner); + resist_size_monitors(moveresize_client, &cur_x, &cur_y, lockcorner); + } cur_x -= moveresize_client->frame->size.left + moveresize_client->frame->size.right;