magnifier: simplify formula
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
fdddc839e8
commit
e753be131d
|
@ -48,8 +48,8 @@ layout_magnifier(int screen)
|
|||
if(!focus)
|
||||
goto bailout;
|
||||
|
||||
geometry.width = sqrt(area.width * area.width * curtags[0]->mwfact);
|
||||
geometry.height = sqrt(area.height * area.height * curtags[0]->mwfact);
|
||||
geometry.width = area.width * sqrt(curtags[0]->mwfact);
|
||||
geometry.height = area.height * sqrt(curtags[0]->mwfact);
|
||||
geometry.x = area.x + (area.width - geometry.width) / 2;
|
||||
geometry.y = area.y + (area.height - geometry.height) / 2;
|
||||
client_resize(focus, geometry, focus->honorsizehints);
|
||||
|
|
Loading…
Reference in New Issue