Skip to content

Commit da823b2

Browse files
authored
Remove icons from debug consoles in quick access (microsoft#152918)
Fixes microsoft#152917
1 parent 2d32e40 commit da823b2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55
import { CancellationToken } from 'vs/base/common/cancellation';
6-
import { Codicon } from 'vs/base/common/codicons';
76
import { matchesFuzzy } from 'vs/base/common/filters';
87
import { DisposableStore } from 'vs/base/common/lifecycle';
98
import { localize } from 'vs/nls';
@@ -49,8 +48,7 @@ export class DebugConsoleQuickAccess extends PickerQuickAccessProvider<IPickerQu
4948
}
5049

5150
private _createPick(session: IDebugSession, sessionIndex: number, filter: string): IPickerQuickAccessItem | undefined {
52-
const iconId = Codicon.debugConsole.id;
53-
const label = `$(${iconId}) ${session.name}`;
51+
const label = session.name;
5452

5553
const highlights = matchesFuzzy(filter, label, true);
5654
if (highlights) {

0 commit comments

Comments
 (0)