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

15 lines
213 B
C++

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