aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-04-01 16:46:00 +0200
committerAnselm R Garbe <garbeam@gmail.com>2008-04-01 16:46:00 +0200
commit6cf73e706ac8748e2e1734faad532ca3918e56c2 (patch)
treef0078f02fa641e3753f5125dca175ef7cc2e224f /dwm.c
parenta520ba3c0baed704e0323494aa7f8a4a464912da (diff)
downloaddwm-6cf73e706ac8748e2e1734faad532ca3918e56c2.tar.zst
aspects hints seem broken for fullscreen apps
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/dwm.c b/dwm.c
index 37e833e..1080d2d 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1196,9 +1196,9 @@ resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
if(sizehints) {
/* set minimum possible */
- if (w < 1)
+ if(w < 1)
w = 1;
- if (h < 1)
+ if(h < 1)
h = 1;
/* temporarily remove base dimensions */
@@ -1206,7 +1206,9 @@ resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
h -= c->baseh;
/* adjust for aspect limits */
- if (c->minay > 0 && c->maxay > 0 && c->minax > 0 && c->maxax > 0) {
+ if(c->minax != c->maxax && c->minay != c->maxay
+ && c->minax > 0 && c->maxax > 0 && c->minay > 0 && c->maxay > 0)
+ {
if (w * c->maxay > h * c->maxax)
w = h * c->maxax / c->maxay;
else if (w * c->minay < h * c->minax)