[python] matplotlib: make pyplot a submodule of matplotlib

This commit is contained in:
Émilie Feral
2020-03-30 13:58:02 +02:00
parent 7d5568ff1a
commit 61e7ec52e6
16 changed files with 79 additions and 6 deletions

View File

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