diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-17 02:29:13 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-17 02:29:13 +0000 |
| commit | c6dac8539715c12db1e18c13f389c59557270268 (patch) | |
| tree | 61a46f0349956711e29cf0353e06ec55d84eacea /openbox/client.h | |
| parent | 3c590a5851877c0b0205bb107da5d8e9318409c7 (diff) | |
don't let the user toggle decorations on widnows that don't have any decorations to toggle
Diffstat (limited to 'openbox/client.h')
| -rw-r--r-- | openbox/client.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openbox/client.h b/openbox/client.h index 2cc64a5c..05153eb0 100644 --- a/openbox/client.h +++ b/openbox/client.h @@ -73,7 +73,8 @@ typedef enum OB_CLIENT_FUNC_FULLSCREEN = 1 << 5, /*!< Allow to be made fullscreen */ OB_CLIENT_FUNC_CLOSE = 1 << 6, /*!< Allow to be closed */ OB_CLIENT_FUNC_ABOVE = 1 << 7, /*!< Allow to be put in lower layer */ - OB_CLIENT_FUNC_BELOW = 1 << 8 /*!< Allow to be put in higher layer */ + OB_CLIENT_FUNC_BELOW = 1 << 8, /*!< Allow to be put in higher layer */ + OB_CLIENT_FUNC_UNDECORATE = 1 << 9 /*!< Allow to be undecorated */ } ObFunctions; struct _ObClient |
