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:
parent
3ce8f83674
commit
b288fdee41
1 changed files with 1 additions and 3 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue