diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-16 23:32:16 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-16 23:32:16 +0000 |
| commit | af1ac846ccb5fab8a3c83d8688db3d3f96f5a98b (patch) | |
| tree | 79952c2c3f5020ed4960432d398a68e4b318cdec /scripts/builtins.py | |
| parent | 3a83fe7e6cd2fa65a6f54a91bb28fa96cff24332 (diff) | |
new raise/lower window code. only restacks 2 windows (1 move) at a time, ever. ManMower, u rulz.
Diffstat (limited to 'scripts/builtins.py')
| -rw-r--r-- | scripts/builtins.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/builtins.py b/scripts/builtins.py index fee56e63..69271b21 100644 --- a/scripts/builtins.py +++ b/scripts/builtins.py @@ -93,12 +93,12 @@ def restart(data, other = ""): def raise_win(data): """Raises the window on which the event occured""" if not data.client: return - openbox.screen(data.screen).restack(1, data.client) + openbox.screen(data.screen).raiseWindow(data.client) def lower_win(data): """Lowers the window on which the event occured""" if not data.client: return - openbox.screen(data.screen).restack(0, data.client) + openbox.screen(data.screen).lowerWindow(data.client) def toggle_shade(data): """Toggles the shade status of the window on which the event occured""" |
