Skip to content

Commit 358db2d

Browse files
committed
add "run" group to editor title actions
microsoft#92269
1 parent 3121d04 commit 358db2d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/browser/parts/editor/titleControl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ export abstract class TitleControl extends Themable {
238238
this.updateEditorActionsToolbar(); // Update editor toolbar whenever contributed actions change
239239
}));
240240

241-
this.editorToolBarMenuDisposables.add(createAndFillInActionBarActions(titleBarMenu, { arg: this.resourceContext.get(), shouldForwardArgs: true }, { primary, secondary }));
241+
this.editorToolBarMenuDisposables.add(createAndFillInActionBarActions(titleBarMenu, { arg: this.resourceContext.get(), shouldForwardArgs: true }, { primary, secondary }, (group: string) => group === 'navigation' || group === 'run'));
242242
}
243243

244244
return { primary, secondary };

0 commit comments

Comments
 (0)