Skip to content

Commit

Permalink
Don't update overlays as fsps
Browse files Browse the repository at this point in the history
  • Loading branch information
goodboy committed Feb 9, 2023
1 parent ca78931 commit 07d941d
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions piker/ui/_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -777,25 +777,25 @@ def graphics_update_cycle(
array_key=curve_name,
)

# even if we're downsampled bigly
# draw the last datum in the final
# px column to give the user the mx/mn
# range of that set.
if (
curve_name != fqsn
and liv
# and not do_px_step
# and not do_rt_update
):
viz.draw_last(
array_key=curve_name,
# even if we're downsampled bigly
# draw the last datum in the final
# px column to give the user the mx/mn
# range of that set.
if (
curve_name != fqsn
and liv
# and not do_px_step
# and not do_rt_update
):
viz.draw_last(
array_key=curve_name,

# TODO: XXX this is currently broken for the
# `FlattenedOHLC` case since we aren't returning the
# full x/y uppx's worth of src-data from
# `draw_last_datum()` ..
only_last_uppx=True,
)
# TODO: XXX this is currently broken for the
# `FlattenedOHLC` case since we aren't returning the
# full x/y uppx's worth of src-data from
# `draw_last_datum()` ..
only_last_uppx=True,
)

profiler('overlays updates')

Expand Down

0 comments on commit 07d941d

Please sign in to comment.