1
0
Fork 0
This commit is contained in:
rhp 2001-07-03 18:37:18 +00:00
parent 7d79a37c9d
commit 3650c23055

View file

@ -116,8 +116,16 @@ find_next_cascade (MetaWindow *window,
/* arbitrary-ish threshold, honors user attempts to /* arbitrary-ish threshold, honors user attempts to
* manually cascade. * manually cascade.
*/ */
x_threshold = MAX (fgeom->left_width, 10); if (fgeom)
y_threshold = MAX (fgeom->top_height, 10); {
x_threshold = MAX (fgeom->left_width, 10);
y_threshold = MAX (fgeom->top_height, 10);
}
else
{
x_threshold = 10;
y_threshold = 10;
}
tmp = sorted; tmp = sorted;
while (tmp != NULL) while (tmp != NULL)