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 5c697de commit 1aab9f1Copy full SHA for 1aab9f1
piker/ui/view_mode.py
@@ -668,18 +668,17 @@ def overlay_viewlists(
668
f'yref@xref_pin: {yref}\n'
669
)
670
671
- # if we need to handle not-in-view cases?
672
- # mx_scalars = mx_viz.scalars_from_index(xref)
673
- # if mx_scalars is None:
674
- # continue
675
-
+ # XXX: we need to handle not-in-view cases?
+ # still not sure why or when tf this happens..
+ mx_scalars = mx_viz.scalars_from_index(xref)
+ if mx_scalars is None:
+ continue
676
(
677
i_start,
678
y_ref_major,
679
r_up_from_major_at_xref,
680
r_down_from_major_at_xref,
681
- ) = mx_viz.scalars_from_index(xref)
682
- # ) = mx_scalars
+ ) = mx_scalars
683
684
if debug_print:
685
print(
0 commit comments