Skip to content

Commit

Permalink
fix: Combobox shadow is cliped
Browse files Browse the repository at this point in the history
remove clip property

Log:
  • Loading branch information
mhduiy committed Sep 5, 2024
1 parent 37141b5 commit 8cb5678
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qt6/src/qml/ComboBox.qml
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ T.ComboBox {
}

popup: Popup {
clip: true
implicitWidth: control.width
contentItem: ArrowListView {
clip: true
maxVisibleItems: control.maxVisibleItems
view.model: control.delegateModel
view.currentIndex: control.highlightedIndex
Expand Down
2 changes: 1 addition & 1 deletion src/qml/ComboBox.qml
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ T.ComboBox {
}

popup: Popup {
clip: true
implicitWidth: control.width
contentItem: ArrowListView {
clip: true
maxVisibleItems: control.maxVisibleItems
view.model: control.delegateModel
view.currentIndex: control.highlightedIndex
Expand Down

0 comments on commit 8cb5678

Please sign in to comment.