aboutsummaryrefslogtreecommitdiff
path: root/src/Text
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-03-13 12:05:52 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2021-03-13 12:05:52 -0800
commiteed18d231cc706e27a1495d46e8c05dd18a0938f (patch)
tree88d358939c850d1a48d11bfd9d7c4b65b24b5f84 /src/Text
parent9bd36b03e97840b2d8ebd8b69d44f898c11d0812 (diff)
downloadpandoc-eed18d231cc706e27a1495d46e8c05dd18a0938f.tar.gz
Use integral values for w:tblW in docx.
Cloess #7141.
Diffstat (limited to 'src/Text')
-rw-r--r--src/Text/Pandoc/Writers/Docx.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Docx.hs b/src/Text/Pandoc/Writers/Docx.hs
index 89c71d773..c47bfb2ea 100644
--- a/src/Text/Pandoc/Writers/Docx.hs
+++ b/src/Text/Pandoc/Writers/Docx.hs
@@ -1031,7 +1031,7 @@ blockToOpenXML' opts (Table _ blkCapt specs thead tbody tfoot) = do
map mkcell cells
let textwidth = 7920 -- 5.5 in in twips, 1/20 pt
let fullrow = 5000 -- 100% specified in pct
- let rowwidth = fullrow * sum widths
+ let (rowwidth :: Int) = round $ fullrow * sum widths
let mkgridcol w = mknode "w:gridCol"
[("w:w", tshow (floor (textwidth * w) :: Integer))] ()
let hasHeader = not $ all null headers