From 3d9507b7efc5563d82babb4a9c1b246ae670370f Mon Sep 17 00:00:00 2001 From: Cassie Tarakajian Date: Thu, 3 Oct 2019 16:16:54 -0400 Subject: [PATCH] re #1177: increase autorefresh time period to 1000ms --- client/modules/IDE/components/Editor.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/modules/IDE/components/Editor.jsx b/client/modules/IDE/components/Editor.jsx index 6200348c..9c447cfa 100644 --- a/client/modules/IDE/components/Editor.jsx +++ b/client/modules/IDE/components/Editor.jsx @@ -134,7 +134,7 @@ class Editor extends React.Component { this.props.clearConsole(); this.props.startRefreshSketch(); } - }, 400)); + }, 1000)); this._cm.on('keyup', () => { const temp = `line ${parseInt((this._cm.getCursor().line) + 1, 10)}`;