We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1209611 commit b107b0eCopy full SHA for b107b0e
funscript_editor/ui/postprocessing.py
@@ -45,7 +45,7 @@ def __init__(self, metric, raw_score, video_info, parent=None):
45
self.p6.vb.setLimits(xMin=0, xMax=len(raw_score), yMin=0, yMax=100)
46
self.p6.setMouseEnabled(y=False)
47
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))
+ self.curve_result = self.p6.plot(pen=pg.mkPen("r", width=2.0), symbol='o')
49
self.curve_raw.setData(self.raw_score_idx, self.raw_score)
50
51
self.result_idx = []
0 commit comments