Don't skip overlay scaling in disp-loop for now

multichartz_backup
Tyler Goodlet 2023-01-24 12:33:11 -05:00
parent 1cfb2b083f
commit 07de93c11c
1 changed files with 5 additions and 3 deletions

View File

@ -257,7 +257,7 @@ async def increment_history_view(
if liv: if liv:
# hist_viz.plot.vb._set_yrange(viz=hist_viz) # hist_viz.plot.vb._set_yrange(viz=hist_viz)
hist_viz.plot.vb.interact_graphics_cycle( hist_viz.plot.vb.interact_graphics_cycle(
do_overlay_scaling=False, # do_overlay_scaling=False,
) )
profiler('hist chart yrange view') profiler('hist chart yrange view')
@ -711,9 +711,11 @@ def graphics_update_cycle(
main_vb._ic is None main_vb._ic is None
or not main_vb._ic.is_set() or not main_vb._ic.is_set()
): ):
yr = (mn, mx) # TODO: incremenal update of the median
# and maxmin driving the y-autoranging.
# yr = (mn, mx)
main_vb.interact_graphics_cycle( main_vb.interact_graphics_cycle(
do_overlay_scaling=False, # do_overlay_scaling=False,
) )
# TODO: we should probably scale # TODO: we should probably scale
# the view margin based on the size # the view margin based on the size