Skip to content

Commit

Permalink
TreeGridView: fix setting an explicit height in headerRendererFactory
Browse files Browse the repository at this point in the history
It was being cleared by the layout, but it should be allowed
  • Loading branch information
joshtynjala committed Oct 5, 2023
1 parent bf19e47 commit 0afb1eb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/feathers/controls/TreeGridView.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1141,6 +1141,8 @@ class TreeGridView extends BaseScrollContainer implements IDataSelector<Dynamic>

if (this._headerContainerLayout == null) {
this._headerContainerLayout = new GridViewRowLayout();
// allow the header renderer factory to set the height of headers
this._headerContainerLayout.heightResetEnabled = false;
}

if (this._headerContainer == null) {
Expand Down

0 comments on commit 0afb1eb

Please sign in to comment.