mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
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:
parent
6ab93f08be
commit
8ff6355582
2 changed files with 0 additions and 12 deletions
|
|
@ -32,7 +32,6 @@ export class ActivityIndicator {
|
|||
vscode.window.withProgress(
|
||||
{
|
||||
location: { viewId: ActivityIndicator.VIEW_ID },
|
||||
title: "Roo is working...",
|
||||
},
|
||||
() => {
|
||||
return new Promise<void>((resolve) => {
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue