Skip to content

Commit 4595fbd

Browse files
Fix color of curved arrows
Signed-off-by: Jacob Stopak <jacob@initialcommit.io>
1 parent 8984488 commit 4595fbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git_sim/log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def draw_commit(
145145
for commitCircle in self.drawnCommits.values():
146146
inter = m.Intersection(lineRect, commitCircle)
147147
if inter.has_points():
148-
arrow = m.CurvedArrow(start, end)
148+
arrow = m.CurvedArrow(start, end, color=self.fontColor)
149149
if start[1] == end[1]:
150150
arrow.shift(m.UP * 1.25)
151151
if start[0] < end[0] and start[1] == end[1]:

0 commit comments

Comments
 (0)