Skip to content

Commit

Permalink
digital-namazu-no-henka: fix battery segments
Browse files Browse the repository at this point in the history
  • Loading branch information
ncaat authored and eLtMosen committed Feb 8, 2024
1 parent fff203d commit c1111ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ Item {
Shape {
id: segment

visible: index === 0 ? true : (index / segmentedArc.segmentAmount) < segmentedArc.inputValue
visible: index === 0 ? true : (index / segmentedArc.segmentAmount) <= (segmentedArc.inputValue - 0.1)

ShapePath {
fillColor: "transparent"
Expand Down

0 comments on commit c1111ab

Please sign in to comment.