Files
Upsilon/python/port/mod/matplotlib/plot_controller.cpp

16 lines
327 B
C++

#include "plot_controller.h"
namespace Matplotlib {
void PlotController::viewWillAppear() {
MicroPython::ExecutionViewControllerHelper::viewWillAppear(this);
curveView()->reload();
}
void PlotController::viewDidDisappear() {
MicroPython::ExecutionViewControllerHelper::viewDidDisappear(this);
m_store->flush();
}
}