Fix p5 console being cleared on pause

The p5 console was being cleared on pause
not allowing a user to view what was outputed
on the last run.  To fix clearConsole function
is now only called if playing.
This commit is contained in:
amitch6097 2020-01-04 23:24:08 -05:00
parent 3357af6df9
commit a1cd362780
1 changed files with 1 additions and 1 deletions

View File

@ -334,10 +334,10 @@ class PreviewFrame extends React.Component {
}
renderSketch() {
this.props.clearConsole();
const doc = this.iframeElement;
const localFiles = this.injectLocalFiles();
if (this.props.isPlaying) {
this.props.clearConsole();
srcDoc.set(doc, localFiles);
if (this.props.endSketchRefresh) {
this.props.endSketchRefresh();