summaryrefslogtreecommitdiff
path: root/tex/context/base/tabl-xtb.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/tabl-xtb.lua')
-rw-r--r--tex/context/base/tabl-xtb.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/tex/context/base/tabl-xtb.lua b/tex/context/base/tabl-xtb.lua
index b753560c6..2dd53accd 100644
--- a/tex/context/base/tabl-xtb.lua
+++ b/tex/context/base/tabl-xtb.lua
@@ -212,14 +212,14 @@ function xtables.set_reflow_width()
local fixedcolumns = data.fixedcolumns
local fixedrows = data.fixedrows
if dimensionstate == 1 then
-if width > fixedcolumns[c] then -- how about a span here?
- fixedcolumns[c] = width
-end
+ if width > fixedcolumns[c] then -- how about a span here?
+ fixedcolumns[c] = width
+ end
elseif dimensionstate == 2 then
fixedrows[r] = height
elseif dimensionstate == 3 then
- fixedrows[r] = width
- fixedcolumns[c] = height
+ fixedrows[r] = height -- width
+ fixedcolumns[c] = width -- height
else -- probably something frozen, like an image -- we could parse the list
if width <= data.criterium_h and height >= data.criterium_v then
if width > fixedcolumns[c] then -- how about a span here?