diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-02-01 11:59:28 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-02-01 11:59:28 +0000 |
| commit | d0c90fcc6019e5fe97c0ef048fa07e4b34e2497c (patch) | |
| tree | fff999fa45845a5a37f3c7dd2272fe4e9d169f6a /scripts/historyplacement.py | |
| parent | 5d672875d4c37c65bd25b4a8cdb982b7f3b517df (diff) | |
dont let you ignore requested positions for !normal windows
Diffstat (limited to 'scripts/historyplacement.py')
| -rw-r--r-- | scripts/historyplacement.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/historyplacement.py b/scripts/historyplacement.py index 8386e581..b39043cc 100644 --- a/scripts/historyplacement.py +++ b/scripts/historyplacement.py @@ -104,7 +104,8 @@ def _find(screen, state): def place(data): global _data if data.client: - if not windowplacement.ignore_requested_positions: + if not (windowplacement.ignore_requested_positions and + data.client.normal()): if data.client.positionRequested(): return state = _create_state(data) try: |
