You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each column is designated as either Fixed(n) or Variable and then to compute the width of each column we use the size n for Fixed columns and compute the size of the Variable columns as total table width - sum(fixed size columns) divided by number number of variable size columns.
The effect is that all columns remain fixed in size except the Host column which is Variable and can therefore grows or shrinks as the window is resized or columns are added or removed.
This may be replaced in future by a more complex layout algorithm but works well enough for today.
The text was updated successfully, but these errors were encountered:
Merge in of fujiapple852#925 improvement on column display.
feat display jitter
feat display jitter(WIP)
Includes possible test approach using JSON to mimic trace data
feat(tui): improve column width layout logic (WIP)
Each column is designated as either
Fixed(n)
orVariable
and then to compute the width of each column we use the sizen
forFixed
columns and compute the size of theVariable
columns as total table width - sum(fixed size columns) divided by number number of variable size columns.The effect is that all columns remain fixed in size except the
Host
column which isVariable
and can therefore grows or shrinks as the window is resized or columns are added or removed.This may be replaced in future by a more complex layout algorithm but works well enough for today.
The text was updated successfully, but these errors were encountered: