Skip to content

Commit

Permalink
Style bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
realbardia committed May 13, 2024
1 parent 19de4ba commit 67de8a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "../.." as Root

AbstractStyle {
id: dis
implicitHeight: 44
implicitHeight: 40
implicitWidth: contentRow.width + 40

Connections {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import "../.." as Root

AbstractStyle {
id: dis
implicitHeight: (control.contentHeight <= 0? 33 : control.contentHeight + 18)
implicitHeight: Math.max(control.contentHeight + 18, 40)
implicitWidth: control.width

padding {
top: 9
bottom: 10
top: 11
bottom: 12
left: 4
right: 4
}
Expand Down

0 comments on commit 67de8a6

Please sign in to comment.