aboutsummaryrefslogtreecommitdiff
path: root/src/frame.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2016-03-28 17:36:33 +0200
committerThomas White <taw@bitwiz.org.uk>2016-03-28 17:36:33 +0200
commit10b73d26ba94ead1021106df4e9886335d28eb7b (patch)
tree138eb5f274f8a6c46089fcf7a7f51a03affc5bb8 /src/frame.c
parent13ab84211488aa422c43756737664dec62bebb90 (diff)
Fixed flowed height (and reduce spaces between paragraphs)
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index c21589f..3f3e708 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -350,7 +350,7 @@ double total_height(struct frame *fr)
int i;
double t = 0.0;
for ( i=0; i<fr->n_paras; i++ ) {
- t += fr->paras[i]->height + 20.0;
+ t += fr->paras[i]->height;
}
return t;
}