mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
16 lines
327 B
C++
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();
|
|
}
|
|
|
|
}
|