diff options
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibGUI/TreeView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/TreeView.cpp b/Userland/Libraries/LibGUI/TreeView.cpp index be91aaaf61..81c2cc07df 100644 --- a/Userland/Libraries/LibGUI/TreeView.cpp +++ b/Userland/Libraries/LibGUI/TreeView.cpp @@ -601,7 +601,7 @@ void TreeView::update_column_sizes() return IterationDecision::Continue; }); - set_column_width(tree_column, max(this->column_width(tree_column), tree_column_width)); + set_column_width(tree_column, tree_column_width); } int TreeView::tree_column_x_offset() const |