Skip to content

Commit 07bd3ff

Browse files
committed
use folder icon for debug quick pick
#95835
1 parent 14911c4 commit 07bd3ff

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/vs/workbench/contrib/debug/browser/debugQuickAccess.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,14 @@ export class StartDebugQuickAccessProvider extends PickerQuickAccessProvider<IPi
8686

8787
dynamicProviders.forEach(provider => {
8888
picks.push({
89-
label: provider.label,
89+
label: `$(folder) ${provider.label}...`,
90+
ariaLabel: localize('providerAriaLabel', "{0} contributed configurations", provider.label),
9091
accept: async () => {
9192
const pick = await provider.pick();
9293
if (pick) {
9394
this.debugService.startDebugging(pick.launch, pick.config);
9495
}
95-
},
96+
}
9697
});
9798
});
9899

0 commit comments

Comments
 (0)