mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.human.io: Fix column width miscalculation
Fixes that the more fixed width columns there are, the narrower the resulting table becomes. A right-aligned variable-width column at the last position should always be flush to the right side of the terminal.
This commit is contained in:
parent
7100d58828
commit
06450fb65b
1 changed files with 0 additions and 3 deletions
|
@ -142,9 +142,6 @@ local function new_table(col_specs, max_width)
|
||||||
width = math.max(tonumber(width), title and (#title+1) or 0);
|
width = math.max(tonumber(width), title and (#title+1) or 0);
|
||||||
widths[i] = width;
|
widths[i] = width;
|
||||||
free_width = free_width - width;
|
free_width = free_width - width;
|
||||||
if i > 1 then
|
|
||||||
free_width = free_width - #separator;
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue