Snapshot graphs needs a redraw scheduled after creation/destruction

This commit is contained in:
Mark Watkins 2014-08-27 23:50:41 +10:00
parent a0a8679c48
commit 56e54cc6fa

View File

@ -2104,10 +2104,13 @@ void gGraphView::onSnapshotGraphToggle()
// addGraph(newgraph);
updateScale();
timedRedraw(0);
} else if (cmd == "remove") {
m_graphsbyname.remove(graph->name());
m_graphs.removeAll(it.value());
delete graph;
updateScale();
timedRedraw(0);
}
qDebug() << cmd << name;
}