From 8ff6355582314ff27fb9ef015f4cb0a9883facc7 Mon Sep 17 00:00:00 2001 From: Roo Code Date: Mon, 12 Jan 2026 09:34:48 +0000 Subject: [PATCH] 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. --- src/core/webview/ActivityIndicator.ts | 1 - src/core/webview/__tests__/ActivityIndicator.spec.ts | 11 ----------- 2 files changed, 12 deletions(-) diff --git a/src/core/webview/ActivityIndicator.ts b/src/core/webview/ActivityIndicator.ts index 3dccb4a4d6..20e161cd4e 100644 --- a/src/core/webview/ActivityIndicator.ts +++ b/src/core/webview/ActivityIndicator.ts @@ -32,7 +32,6 @@ export class ActivityIndicator { vscode.window.withProgress( { location: { viewId: ActivityIndicator.VIEW_ID }, - title: "Roo is working...", }, () => { return new Promise((resolve) => { diff --git a/src/core/webview/__tests__/ActivityIndicator.spec.ts b/src/core/webview/__tests__/ActivityIndicator.spec.ts index f625d8720e..97188aa67c 100644 --- a/src/core/webview/__tests__/ActivityIndicator.spec.ts +++ b/src/core/webview/__tests__/ActivityIndicator.spec.ts @@ -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()