fixed gaps in centeredfloatingmaster layout
the master area moved up when increasing outer gaps
This commit is contained in:
parent
1c7d57451b
commit
d8cc17eaac
1 changed files with 2 additions and 2 deletions
|
@ -343,13 +343,13 @@ centeredfloatingmaster(Monitor *m)
|
||||||
/* go mfact box in the center if more than nmaster clients */
|
/* go mfact box in the center if more than nmaster clients */
|
||||||
if (m->ww > m->wh) {
|
if (m->ww > m->wh) {
|
||||||
mw = m->ww * m->mfact - iv*mivf*(MIN(n, m->nmaster) - 1);
|
mw = m->ww * m->mfact - iv*mivf*(MIN(n, m->nmaster) - 1);
|
||||||
mh = m->wh * 0.9;
|
mh = m->wh * 0.9 - 2*oh;
|
||||||
} else {
|
} else {
|
||||||
mw = m->ww * 0.9 - iv*mivf*(MIN(n, m->nmaster) - 1);
|
mw = m->ww * 0.9 - iv*mivf*(MIN(n, m->nmaster) - 1);
|
||||||
mh = m->wh * m->mfact;
|
mh = m->wh * m->mfact;
|
||||||
}
|
}
|
||||||
mx = m->wx + (m->ww - mw) / 2;
|
mx = m->wx + (m->ww - mw) / 2;
|
||||||
my = m->wy + (m->wh - mh - 2*oh) / 2;
|
my = m->wy + (m->wh - mh) / 2;
|
||||||
|
|
||||||
sx = m->wx + ov;
|
sx = m->wx + ov;
|
||||||
sy = m->wy + oh;
|
sy = m->wy + oh;
|
||||||
|
|
Loading…
Reference in a new issue