Ephoto: Increase padding on single viewer.

This commit is contained in:
Stephen okra Houston 2015-12-08 15:55:11 -06:00
parent e32a33ac4d
commit f9ce92e568
1 changed files with 2 additions and 2 deletions

View File

@ -246,8 +246,8 @@ _viewer_zoom_fit_apply(Ephoto_Viewer *v)
EINA_SAFETY_ON_TRUE_RETURN(iw <= 0);
EINA_SAFETY_ON_TRUE_RETURN(ih <= 0);
zx = (double) (cw-10) / (double) iw;
zy = (double) (ch-10) / (double) ih;
zx = (double) (cw-15) / (double) iw;
zy = (double) (ch-15) / (double) ih;
zoom = (zx < zy) ? zx : zy;
_viewer_zoom_apply(v, zoom);