We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a5ecbb commit 235c3b9Copy full SHA for 235c3b9
1 file changed
src/ide/windows.ts
@@ -177,6 +177,9 @@ export class ProjectWindows {
177
var wnd = this.id2window[fileid];
178
if (wnd && wnd.undoStep) {
179
wnd.undoStep();
180
+ if (wnd.getValue) {
181
+ this.project.updateFile(fileid, wnd.getValue());
182
+ }
183
this.redofiles.push(fileid);
184
this.refresh(false);
185
} else {
@@ -189,6 +192,9 @@ export class ProjectWindows {
189
192
190
193
if (wnd && wnd.redoStep) {
191
194
wnd.redoStep();
195
196
197
198
this.undofiles.push(fileid);
199
200
0 commit comments