Skip to content

Commit

Permalink
fix misbehaving column widths
Browse files Browse the repository at this point in the history
  • Loading branch information
RensDofferhoff committed Jun 25, 2024
1 parent 1afb9d9 commit 2af581f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Rectangle

anchors.right: colFilterOn.left
anchors.verticalCenter: parent.verticalCenter
anchors.margins: 2 * jaspTheme.uiScale
anchors.margins: columnIsComputed ? 2 * jaspTheme.uiScale : 0
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Image
{
id: colIsComputed

width: headerRoot.__iconDim
width: columnIsComputed ? headerRoot.__iconDim : 0
height: headerRoot.__iconDim
visible: columnIsComputed

Expand Down

0 comments on commit 2af581f

Please sign in to comment.