From 07e1e96659950347dd3561220ddf304b362090f5 Mon Sep 17 00:00:00 2001 From: malc Date: Sat, 6 Oct 2012 09:23:40 +0400 Subject: [PATCH] Honor interpagespace in presentation mode for taller than window height pages --- main.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.ml b/main.ml index 12504ab..f42d0b6 100644 --- a/main.ml +++ b/main.ml @@ -1012,7 +1012,7 @@ let calcips h = if conf.presentation then let d = conf.winh - h in - max 0 ((d + 1) / 2) + max conf.interpagespace ((d + 1) / 2) else conf.interpagespace ;; -- 2.11.4.GIT