Lel, always meant to no-cache the step curve..
parent
c646b435bf
commit
74c215d5b2
|
@ -407,9 +407,6 @@ class Curve(FlowGraphic):
|
|||
# (via it's max / min) even when highly zoomed out.
|
||||
class FlattenedOHLC(Curve):
|
||||
|
||||
# avoids strange dragging/smearing artifacts when panning..
|
||||
cache_mode: int = QGraphicsItem.NoCache
|
||||
|
||||
def draw_last_datum(
|
||||
self,
|
||||
path: QPainterPath,
|
||||
|
@ -435,6 +432,11 @@ class FlattenedOHLC(Curve):
|
|||
|
||||
class StepCurve(Curve):
|
||||
|
||||
# avoids strange dragging/smearing artifacts when panning
|
||||
# as well as mouse over artefacts when the vlm chart series
|
||||
# is "shorter" then some overlay..
|
||||
cache_mode: int = QGraphicsItem.NoCache
|
||||
|
||||
def declare_paintables(
|
||||
self,
|
||||
) -> None:
|
||||
|
|
Loading…
Reference in New Issue