We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8d3298 commit e065e20Copy full SHA for e065e20
1 file changed
src/ide/windows.ts
@@ -157,6 +157,9 @@ export class ProjectWindows {
157
var wnd = this.id2window[fileid];
158
if (wnd && wnd.undoStep) {
159
wnd.undoStep();
160
+ if (wnd.getValue) {
161
+ this.project.updateFile(fileid, wnd.getValue());
162
+ }
163
this.redofiles.push(fileid);
164
this.refresh(false);
165
} else {
@@ -169,6 +172,9 @@ export class ProjectWindows {
169
172
170
173
if (wnd && wnd.redoStep) {
171
174
wnd.redoStep();
175
176
177
178
this.undofiles.push(fileid);
179
180
0 commit comments