checked the wrong var for unmaxing
This commit is contained in:
parent
4e8eff328c
commit
360d1659a1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue