Skip to content

Commit

Permalink
Merge pull request #542 from Hzlin7/main
Browse files Browse the repository at this point in the history
fix: 修改Badge显示
  • Loading branch information
zhuzichu520 authored Aug 6, 2024
2 parents 4e4016a + 1b92928 commit b723cfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Qt5/imports/FluentUI/Controls/FluBadge.qml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Rectangle{
text:{
if(count<100)
return count
return count+"+"
return "100+"
}
}
}
2 changes: 1 addition & 1 deletion src/Qt6/imports/FluentUI/Controls/FluBadge.qml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Rectangle{
text:{
if(count<100)
return count
return count+"+"
return "100+"
}
}
}

0 comments on commit b723cfe

Please sign in to comment.