Skip to content

Commit

Permalink
ok so padding needs to be included in the implicitsize of the popup
Browse files Browse the repository at this point in the history
  • Loading branch information
JorisGoosen committed Dec 5, 2024
1 parent 0c9b12a commit 7ea6589
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions QMLComponents/components/JASP/Controls/ComboBox.qml
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ ComboBoxBase
{
id: popupRoot
padding: 1
implicitWidth: popupView.implicitWidth + scrollBar.width
implicitHeight: popupView.implicitHeight
implicitWidth: popupView.implicitWidth + scrollBar.width + 2*padding
implicitHeight: popupView.implicitHeight + 2 * padding

enter: Transition { NumberAnimation { property: "opacity"; from: 0.0; to: 1.0 } enabled: preferencesModel.animationsOn }

Expand Down

0 comments on commit 7ea6589

Please sign in to comment.