Don't skip overlay scaling in disp-loop for now
parent
e06d4b405d
commit
5eaca18ee0
|
@ -263,7 +263,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')
|
||||||
|
|
||||||
|
@ -717,9 +717,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
|
||||||
|
|
Loading…
Reference in New Issue