mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.human.io: Fix pattern to support fractional proportions
This commit is contained in:
parent
bc7277bd01
commit
7e50781f51
1 changed files with 2 additions and 2 deletions
|
@ -139,14 +139,14 @@ local function new_table(col_specs, max_width)
|
|||
local total_proportional_width = 0;
|
||||
for i = 1, #col_specs do
|
||||
if not widths[i] then
|
||||
local width_spec = col_specs[i].width:match("(%d+)[p%%]");
|
||||
local width_spec = col_specs[i].width:match("([%d%.]+)[p%%]");
|
||||
total_proportional_width = total_proportional_width + tonumber(width_spec);
|
||||
end
|
||||
end
|
||||
|
||||
for i = 1, #col_specs do
|
||||
if not widths[i] then
|
||||
local width_spec = col_specs[i].width:match("(%d+)[p%%]");
|
||||
local width_spec = col_specs[i].width:match("([%d%.]+)[p%%]");
|
||||
local rel_width = tonumber(width_spec);
|
||||
widths[i] = math.floor(free_width*(rel_width/total_proportional_width));
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue