From 9a2699fa487233b8f0e2e8f130863b9c0a40e849 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 17 Mar 2003 07:28:32 +0000 Subject: [PATCH] place at 0,0 if the window is too big --- python/windowplacement.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/python/windowplacement.py b/python/windowplacement.py index afeff2ed..1702ab00 100644 --- a/python/windowplacement.py +++ b/python/windowplacement.py @@ -16,11 +16,12 @@ def random(client): #if data.client.positionRequested(): return cx, cy, cw, ch = client.area() sx, sy, sw, sh = ob.Openbox.screenArea(client.desktop()) - global _rand - if sw - cw - 1 <= 0: x = 0 - else: x = Random().randrange(sx, sw - cw - 1) - if (sh - ch - 1 <= 0: y = 0 - else: y = Random().randrange(sy, sh - ch - 1) + xr = sw - cw - 1 # x range + yr = sh - ch - 1 # y range + if xr <= 0: x = 0 + else: x = Random().randrange(sx, xr) + if yr <= 0: y = 0 + else: y = Random().randrange(sy, yr) client.setArea((x, y, cw, ch)) def cascade(client): -- 2.39.2