Skip to content

Commit 80e3d4e

Browse files
authored
fix: restore slash command input border radius (microsoft#194354)
1 parent d9c889a commit 80e3d4e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ class InputEditorDecorations extends Disposable {
7676
const theme = this.themeService.getColorTheme();
7777
this.codeEditorService.registerDecorationType(decorationDescription, slashCommandTextDecorationType, {
7878
color: theme.getColor(chatSlashCommandForeground)?.toString(),
79-
backgroundColor: theme.getColor(chatSlashCommandBackground)?.toString()
79+
backgroundColor: theme.getColor(chatSlashCommandBackground)?.toString(),
80+
borderRadius: '3px'
8081
});
8182
this.codeEditorService.registerDecorationType(decorationDescription, variableTextDecorationType, {
8283
color: theme.getColor(chatSlashCommandForeground)?.toString(),

0 commit comments

Comments
 (0)