revert: remove unsupported tooltip from activity indicator

The VSCode extensions API does not support tooltips for withProgress
view indicators. Confirmed by manual testing that the title property
has no visible effect.
This commit is contained in:
Roo Code 2026-01-12 09:34:48 +00:00
parent 6ab93f08be
commit 8ff6355582
2 changed files with 0 additions and 12 deletions

View file

@ -32,7 +32,6 @@ export class ActivityIndicator {
vscode.window.withProgress(
{
location: { viewId: ActivityIndicator.VIEW_ID },
title: "Roo is working...",
},
() => {
return new Promise<void>((resolve) => {

View file

@ -36,17 +36,6 @@ describe("ActivityIndicator", () => {
)
})
it("should include tooltip text in progress options", () => {
indicator.show()
expect(mockWithProgress).toHaveBeenCalledWith(
expect.objectContaining({
title: "Roo is working...",
}),
expect.any(Function),
)
})
it("should only call withProgress once when shown multiple times", () => {
indicator.show()
indicator.show()