aboutsummaryrefslogtreecommitdiff
path: root/src/render.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2017-01-25 00:01:45 +0100
committerThomas White <taw@bitwiz.org.uk>2017-01-25 00:11:37 +0100
commitc921eed7f3a10b6e403d5d5863df82c652ca5db9 (patch)
tree1dafdca921ff731f43b6049a97656713cc7d7cfe /src/render.c
parentd6afe0601a4d3e35ab492074b7fcde5bfec70875 (diff)
Implement text selection
Diffstat (limited to 'src/render.c')
-rw-r--r--src/render.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render.c b/src/render.c
index a8ff7ea..f87c5b9 100644
--- a/src/render.c
+++ b/src/render.c
@@ -1,7 +1,7 @@
/*
* render.c
*
- * Copyright © 2013-2016 Thomas White <taw@bitwiz.org.uk>
+ * Copyright © 2013-2017 Thomas White <taw@bitwiz.org.uk>
*
* This file is part of Colloquium.
*
@@ -151,7 +151,7 @@ void wrap_frame(struct frame *fr, PangoContext *pc)
w = fr->w - fr->pad_l - fr->pad_r;
for ( i=0; i<fr->n_paras; i++ ) {
- wrap_paragraph(fr->paras[i], pc, w);
+ wrap_paragraph(fr->paras[i], pc, w, 0, 0);
}
}