By default, in a TreeView, the size of each column is defined by the size of its content. If the TreeView is wider than the sum of the width of its columns, the last column receives the extra width.
I’d like to specify that a different column that should receive this extra width.
Context:
I’m trying to solve issue (https://github.com/pychess/pychess/issues/1688 ). I’ve been able to add a Reset column at the one-before last position without being bothered by the way columns are sized, see below:
(Current solution - Capture A)
However, ideally the Reset column would be the rightmost one. This is where column sizing becomes a problem.