Skip to content

Commit 2509d0f

Browse files
authored
chat - use chatSparkle consistently (microsoft#263211)
cc @eli-w-king
1 parent 74a2c86 commit 2509d0f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/vs/workbench/contrib/chat/browser/actions/chatQuickInputActions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export function registerQuickChatActions() {
2626
title: localize2('chat.openInChatView.label', "Open in Chat View"),
2727
f1: false,
2828
category: CHAT_CATEGORY,
29-
icon: Codicon.commentDiscussion,
29+
icon: Codicon.chatSparkle,
3030
menu: {
3131
id: MenuId.ChatInputSide,
3232
group: 'navigation',
@@ -71,7 +71,7 @@ class QuickChatGlobalAction extends Action2 {
7171
id: ASK_QUICK_QUESTION_ACTION_ID,
7272
title: localize2('quickChat', 'Quick Chat'),
7373
precondition: ChatContextKeys.enabled,
74-
icon: Codicon.commentDiscussion,
74+
icon: Codicon.chatSparkle,
7575
f1: false,
7676
category: CHAT_CATEGORY,
7777
keybinding: {

src/vs/workbench/contrib/chat/browser/chatEditorInput.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { ChatAgentLocation } from '../common/constants.js';
2323
import { IClearEditingSessionConfirmationOptions } from './actions/chatActions.js';
2424
import type { IChatEditorOptions } from './chatEditor.js';
2525

26-
const ChatEditorIcon = registerIcon('chat-editor-label-icon', Codicon.commentDiscussion, nls.localize('chatEditorLabelIcon', 'Icon of the chat editor label.'));
26+
const ChatEditorIcon = registerIcon('chat-editor-label-icon', Codicon.chatSparkle, nls.localize('chatEditorLabelIcon', 'Icon of the chat editor label.'));
2727

2828
export class ChatEditorInput extends EditorInput implements IEditorCloseHandler {
2929
static readonly countsInUse = new Set<number>();

src/vs/workbench/contrib/inlineChat/browser/inlineChatActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ export class ViewInChatAction extends AbstractInline1ChatAction {
488488
super({
489489
id: ACTION_VIEW_IN_CHAT,
490490
title: localize('viewInChat', 'View in Chat'),
491-
icon: Codicon.commentDiscussion,
491+
icon: Codicon.chatSparkle,
492492
precondition: CTX_INLINE_CHAT_VISIBLE,
493493
menu: [{
494494
id: MENU_INLINE_CHAT_WIDGET_STATUS,

src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ registerActiveXtermAction({
281281
ContextKeyExpr.or(TerminalContextKeys.processSupported, TerminalContextKeys.terminalHasBeenCreated),
282282
TerminalChatContextKeys.requestActive.negate(),
283283
),
284-
icon: Codicon.commentDiscussion,
284+
icon: Codicon.chatSparkle,
285285
menu: [{
286286
id: MENU_TERMINAL_CHAT_WIDGET_STATUS,
287287
group: 'zzz',

0 commit comments

Comments
 (0)