Skip to content

Commit

Permalink
fix: 修改Badge显示
Browse files Browse the repository at this point in the history
  • Loading branch information
Hzlin7 committed Aug 3, 2024
1 parent 4e4016a commit 1b92928
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 1b92928

Please sign in to comment.