diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-28 23:02:57 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-28 23:02:57 +0000 |
| commit | 8ac5a60322d1556337fa78036d10dd630e1cd305 (patch) | |
| tree | 34851aec564708589b8a28e1c2cd1a9b842f3246 /openbox/action.c | |
| parent | 8fb10d8d8705b37cacbcada71821fbf5dc750eb9 (diff) | |
rm client_disable_decorations.. it already had an action.
add the action to the action_from_string func
Diffstat (limited to 'openbox/action.c')
| -rw-r--r-- | openbox/action.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/openbox/action.c b/openbox/action.c index 6eb06298..ccb988d9 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -140,6 +140,8 @@ Action *action_from_string(char *name) } else if (!g_ascii_strcasecmp(name, "previousdesktoprowwrap")) { a = action_new(action_previous_desktop_row); a->data.nextprevdesktop.wrap = TRUE; + } else if (!g_ascii_strcasecmp(name, "toggledecorations")) { + a = action_new(action_toggle_decorations); } else if (!g_ascii_strcasecmp(name, "move")) { a = action_new(action_move); } else if (!g_ascii_strcasecmp(name, "resize")) { |
