diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-09 22:21:28 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-09 22:21:28 +0000 |
| commit | 66afa1dcebaf8f1562311d1293baf4094f9ac011 (patch) | |
| tree | fe68c70d127d6111a0662bd0ca3aba348b15bd24 /openbox/client.c | |
| parent | 6042ba5e992739c5afdce742ee73ac1eed7fd499 (diff) | |
when a window is fully maxed, make clicking on the titlebar past the edge buttons count as clicking on the buttons
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/client.c b/openbox/client.c index 9fbd0b2a..0c4cce1f 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -1664,7 +1664,7 @@ void client_setup_decor_and_functions(ObClient *self) /* kill the handle on fully maxed windows */ if (self->max_vert && self->max_horz) - self->decorations &= ~OB_FRAME_DECOR_HANDLE; + self->decorations &= ~(OB_FRAME_DECOR_HANDLE | OB_FRAME_DECOR_GRIPS); /* finally, the user can have requested no decorations, which overrides everything (but doesnt give it a border if it doesnt have one) */ |
