From 3650c23055d613c7660b64f60f841f2649c5fa3a Mon Sep 17 00:00:00 2001 From: rhp Date: Tue, 3 Jul 2001 18:37:18 +0000 Subject: [PATCH] ... --- src/place.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/place.c b/src/place.c index 6dce2693b..9b238e6b0 100644 --- a/src/place.c +++ b/src/place.c @@ -116,8 +116,16 @@ find_next_cascade (MetaWindow *window, /* arbitrary-ish threshold, honors user attempts to * manually cascade. */ - x_threshold = MAX (fgeom->left_width, 10); - y_threshold = MAX (fgeom->top_height, 10); + if (fgeom) + { + x_threshold = MAX (fgeom->left_width, 10); + y_threshold = MAX (fgeom->top_height, 10); + } + else + { + x_threshold = 10; + y_threshold = 10; + } tmp = sorted; while (tmp != NULL)