Skip to content

Commit c469aef

Browse files
committed
Use hover style
1 parent 250c8e9 commit c469aef

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/vs/workbench/contrib/chat/browser/chatContentParts/chatProgressContentPart.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import { IChatMarkdownAnchorService } from './chatMarkdownAnchorService.js';
2222
import { IConfigurationService } from '../../../../../platform/configuration/common/configuration.js';
2323
import { AccessibilityWorkbenchSettingId } from '../../../accessibility/browser/accessibilityConfiguration.js';
2424
import { IHoverService } from '../../../../../platform/hover/browser/hover.js';
25+
import { HoverStyle } from '../../../../../base/browser/ui/hover/hover.js';
2526

2627
export class ChatProgressContentPart extends Disposable implements IChatContentPart {
2728
public readonly domNode: HTMLElement;
@@ -161,10 +162,7 @@ export class ChatProgressSubPart extends Disposable {
161162
if (tooltip) {
162163
this._register(hoverService.setupDelayedHover(iconElement, {
163164
content: tooltip,
164-
appearance: {
165-
compact: true,
166-
showPointer: true,
167-
},
165+
style: HoverStyle.Pointer,
168166
}));
169167
}
170168
append(this.domNode, iconElement);

0 commit comments

Comments
 (0)