How to make "Message" column wrap text?
The Message column initially is not wrapping text, after I resize window, it starts to wrap text. How to make it wrap text by default?
It seems that Message column width is calculated incorrectly.
Thank you for your feedback. As far as I can remember, I implemented an automatic width adjustment. This means that the width is always adjusted so that the entire text can be read and you don't have to adjust the column width manually every time.
If you do not want this behavior, you would have to implement a corresponding logic or text wrapping. You are welcome to start a PR and upload a corresponding draft.
When there is new item added to log view, ListViewLayoutManager.ResizeColumns() is called. By debugging, I find when ListViewLayoutManager.ResizeColumns() is called, layout does not finish and column widths read in this method are still old values, so otherColumnsWidth and fillWidth local variable is calculated incorrectly. #93