all repos — openbox @ b288fdee411495fba48465c1af3eea4002e93241

openbox fork - make it a bit more like ryudo

dont assert if a moveresize is started while one is in progress. apps could do this with client messages, or the user can easily do it with actions.
Dana Jansens danakj@orodu.net
commit

b288fdee411495fba48465c1af3eea4002e93241

parent

3ce8f836749c9f74f6888251f0a7f2ff601830c0

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

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

@@ -72,9 +72,7 @@ void moveresize_start(ObClient *c, int x, int y, guint b, guint32 cnr)

{ ObCursor cur; - g_assert(!moveresize_in_progress); - - if (!c->frame->visible) + if (moveresize_in_progress || !c->frame->visible) return; moveresize_client = c;