[python] Matplotlib: reload labels in PlotController::viewWillAppear

This commit is contained in:
Émilie Feral
2020-03-24 17:17:04 +01:00
parent 89b54d424e
commit 15e5f7a285
2 changed files with 6 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ class PlotController : public Shared::ZoomAndPanCurveViewController, public Micr
public:
PlotController(PlotStore * store, MicroPython::ExecutionEnvironment * executiveEnvironment) : Shared::ZoomAndPanCurveViewController(nullptr), ExecutionViewControllerHelper(executiveEnvironment), m_store(store), m_view(m_store) {}
void viewWillAppear() override { MicroPython::ExecutionViewControllerHelper::viewWillAppear(this); }
void viewWillAppear() override;
void viewDidDisappear() override;
protected: