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.

This commit is contained in:
Dana Jansens 2003-09-16 08:02:13 +00:00
parent 3ce8f83674
commit b288fdee41

View file

@ -72,9 +72,7 @@ void moveresize_start(ObClient *c, int x, int y, guint b, guint32 cnr)
{ {
ObCursor cur; ObCursor cur;
g_assert(!moveresize_in_progress); if (moveresize_in_progress || !c->frame->visible)
if (!c->frame->visible)
return; return;
moveresize_client = c; moveresize_client = c;