From: Dana Jansens Date: Fri, 26 Sep 2003 15:08:03 +0000 (+0000) Subject: checked the wrong var for unmaxing X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=360d1659a1cfe26a45ebe07a284084f799ab769d;p=chaz%2Fopenbox checked the wrong var for unmaxing --- diff --git a/openbox/client.c b/openbox/client.c index 7b969289..4fa62190 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2181,7 +2181,7 @@ void client_maximize(ObClient *self, gboolean max, int dir, gboolean savearea) } } if ((dir == 0 || dir == 2) && self->max_vert) { /* vert */ - if (self->pre_max_area.width > 0) { + if (self->pre_max_area.height > 0) { y = self->pre_max_area.y; h = self->pre_max_area.height;