Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
朱子楚\zhuzi committed Apr 4, 2024
1 parent 84b2045 commit b4329fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Qt5/imports/FluentUI/Controls/FluComboBox.qml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ T.ComboBox {
selectByMouse: true
verticalAlignment: Text.AlignVCenter
background: FluTextBoxBackground{
border.width: 0
border.width: 1
bottomMargin: {
if(!control.editable){
return 0
return 1
}
return contentItem && contentItem.activeFocus ? 2 : 1
}
Expand Down
4 changes: 2 additions & 2 deletions src/Qt6/imports/FluentUI/Controls/FluComboBox.qml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ T.ComboBox {
selectByMouse: true
verticalAlignment: Text.AlignVCenter
background: FluTextBoxBackground{
border.width: 0
border.width: 1
bottomMargin: {
if(!control.editable){
return 0
return 1
}
return contentItem && contentItem.activeFocus ? 2 : 1
}
Expand Down

0 comments on commit b4329fd

Please sign in to comment.