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 6644d4f commit e396583Copy full SHA for e396583
src/vs/workbench/browser/actions/windowActions.ts
@@ -170,7 +170,7 @@ abstract class BaseOpenRecentAction extends Action2 {
170
onDidTriggerItemButton: async context => {
171
172
// Remove
173
- if (context.button === this.removeFromRecentlyOpened) {
+ if (context.button === this.removeFromRecentlyOpened || context.button === this.windowOpenedRecentlyOpenedFolder || context.button === this.windowOpenedRecentlyOpenedWorkspace) {
174
await workspacesService.removeRecentlyOpened([context.item.resource]);
175
context.removeItem();
176
}
0 commit comments