did a quick check and found the issue, XCrossSectionPlot and YCrossSectionPlot do not contain connect_plot functions,
I tested by adding the following to both classes and the behaviour was restored:
def connect_plot(self, plot: BasePlot) -> None:
"""Connect plot to cross section plot"""
XYCrossSectionMixin.connect_plot(self, plot)
|
class XCrossSectionPlot(HorizontalCrossSectionPlot, XYCrossSectionMixin): |
|
class YCrossSectionPlot(VerticalCrossSectionPlot, XYCrossSectionMixin): |
I can't create a branch on the repo otherwise I would have created a PR
did a quick check and found the issue, XCrossSectionPlot and YCrossSectionPlot do not contain connect_plot functions,
I tested by adding the following to both classes and the behaviour was restored:
PlotPy/plotpy/panels/csection/csplot.py
Line 439 in c5c1213
PlotPy/plotpy/panels/csection/csplot.py
Line 453 in c5c1213
I can't create a branch on the repo otherwise I would have created a PR