We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a6d820 commit 8717b43Copy full SHA for 8717b43
src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.ts
@@ -277,6 +277,10 @@ export class GettingStartedPage extends EditorPane {
277
}));
278
279
this.recentlyOpened = workspacesService.getRecentlyOpened();
280
+ this._register(workspacesService.onDidChangeRecentlyOpened(() => {
281
+ this.recentlyOpened = workspacesService.getRecentlyOpened();
282
+ rerender();
283
+ }));
284
}
285
286
// remove when 'workbench.welcomePage.preferReducedMotion' deprecated
0 commit comments