diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-23 05:20:13 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-23 05:20:13 +0000 |
| commit | 28b8f67562bb7eb15134f2bf7a8394f0a009b9ba (patch) | |
| tree | 69eaa560ba90666b995d46b32ec64518e4b9a529 /src/openbox.py | |
| parent | 7b7ae097a0d389a35967fdab4ea310effcfc42c2 (diff) | |
remove the word "sticky" from everywhere, and replace with "all desktops". change the titlebar layout to use D instead of S for the all-desktops button
Diffstat (limited to 'src/openbox.py')
| -rw-r--r-- | src/openbox.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/openbox.py b/src/openbox.py index ac8b0c6c..ea88e12a 100644 --- a/src/openbox.py +++ b/src/openbox.py @@ -773,7 +773,7 @@ class Client(EventHandler,): Decor_Border = _openbox.Client_Decor_Border Decor_Iconify = _openbox.Client_Decor_Iconify Decor_Maximize = _openbox.Client_Decor_Maximize - Decor_Sticky = _openbox.Client_Decor_Sticky + Decor_AllDesktops = _openbox.Client_Decor_AllDesktops Decor_Close = _openbox.Client_Decor_Close State_Remove = _openbox.Client_State_Remove State_Add = _openbox.Client_State_Add @@ -869,7 +869,7 @@ class Frame(_object): def button_close(*args): return apply(_openbox.Frame_button_close,args) def button_iconify(*args): return apply(_openbox.Frame_button_iconify,args) def button_max(*args): return apply(_openbox.Frame_button_max,args) - def button_stick(*args): return apply(_openbox.Frame_button_stick,args) + def button_alldesk(*args): return apply(_openbox.Frame_button_alldesk,args) def handle(*args): return apply(_openbox.Frame_handle,args) def grip_left(*args): return apply(_openbox.Frame_grip_left,args) def grip_right(*args): return apply(_openbox.Frame_grip_right,args) @@ -890,7 +890,7 @@ MC_Window = _openbox.MC_Window MC_MaximizeButton = _openbox.MC_MaximizeButton MC_CloseButton = _openbox.MC_CloseButton MC_IconifyButton = _openbox.MC_IconifyButton -MC_StickyButton = _openbox.MC_StickyButton +MC_AllDesktopsButton = _openbox.MC_AllDesktopsButton MC_Grip = _openbox.MC_Grip MC_Root = _openbox.MC_Root MC_MenuItem = _openbox.MC_MenuItem |
