mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
15 lines
213 B
C++
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();
|
|
}
|
|
|
|
}
|