diff options
| author | Dana Jansens <danakj@orodu.net> | 2008-02-22 10:52:04 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-02-22 10:52:04 -0500 |
| commit | fadc52e1869fbdda3d30a8131ca5c5c1da7c6e98 (patch) | |
| tree | cea62ae0cfb6c7a3ef732c554104075360498da1 /openbox/client.c | |
| parent | cd4f325ee7a3a64eb986931a0575e5f1c3c587c3 (diff) | |
Allow windows to specify a base-size of 0
This fixes the resize popup for terminal windows, if the base-size was 0, the size popup would be off by one.
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/client.c b/openbox/client.c index 32daf663..fbe728d1 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -1621,7 +1621,7 @@ void client_update_normal_hints(ObClient *self) self->min_ratio = 0.0f; self->max_ratio = 0.0f; SIZE_SET(self->size_inc, 1, 1); - SIZE_SET(self->base_size, 0, 0); + SIZE_SET(self->base_size, -1, -1); SIZE_SET(self->min_size, 0, 0); SIZE_SET(self->max_size, G_MAXINT, G_MAXINT); @@ -2895,7 +2895,7 @@ void client_try_configure(ObClient *self, gint *x, gint *y, gint *w, gint *h, 0 : self->max_ratio; /* base size is substituted with min size if not specified */ - if (self->base_size.width || self->base_size.height) { + if (self->base_size.width >= 0 || self->base_size.height >= 0) { basew = self->base_size.width; baseh = self->base_size.height; } else { |
