Skip to content

Commit

Permalink
Revert "Fixed line uncommited changes -> first commit not being drawn…
Browse files Browse the repository at this point in the history
… in the log (now properly :P)"

This reverts commit 92b2255.
  • Loading branch information
JetpackDuba committed Sep 19, 2023
1 parent a70adb6 commit bb49e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/com/jetpackduba/gitnuro/ui/log/Log.kt
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,7 @@ fun CommitsGraphLine(
modifier = Modifier.fillMaxSize()
) {
clipRect {
if (plotCommit.childCount > 0 || itemPosition == 0) {
if (plotCommit.childCount > 0) {
drawLine(
color = colors[itemPosition % colors.size],
start = Offset(laneWidthWithDensity * (itemPosition + 1), this.center.y),
Expand Down

0 comments on commit bb49e94

Please sign in to comment.