Skip to content

Commit b107b0e

Browse files
author
arch
committed
draw dots in postprocessing
1 parent 1209611 commit b107b0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

funscript_editor/ui/postprocessing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def __init__(self, metric, raw_score, video_info, parent=None):
4545
self.p6.vb.setLimits(xMin=0, xMax=len(raw_score), yMin=0, yMax=100)
4646
self.p6.setMouseEnabled(y=False)
4747
self.curve_raw = self.p6.plot(pen=pg.mkPen("b", width=2.0))
48-
self.curve_result = self.p6.plot(pen=pg.mkPen("r", width=2.0))
48+
self.curve_result = self.p6.plot(pen=pg.mkPen("r", width=2.0), symbol='o')
4949
self.curve_raw.setData(self.raw_score_idx, self.raw_score)
5050

5151
self.result_idx = []

0 commit comments

Comments
 (0)