Skip to content

Commit fc14f7d

Browse files
committed
feat: replace + icon with edit icon for New Task button
- Changed icon from $(add) to $(edit) in src/package.json - Updated test expectations in packages/build/src/__tests__/index.test.ts - Addresses issue #7941 to better convey "start composing a task"
1 parent c4c4780 commit fc14f7d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/build/src/__tests__/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe("generatePackageJson", () => {
3535
{
3636
command: "roo-cline.plusButtonClicked",
3737
title: "%command.newTask.title%",
38-
icon: "$(add)",
38+
icon: "$(edit)",
3939
},
4040
{
4141
command: "roo-cline.openInNewTab",
@@ -148,7 +148,7 @@ describe("generatePackageJson", () => {
148148
{
149149
command: "roo-code-nightly.plusButtonClicked",
150150
title: "%command.newTask.title%",
151-
icon: "$(add)",
151+
icon: "$(edit)",
152152
},
153153
{
154154
command: "roo-code-nightly.openInNewTab",

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
{
7474
"command": "roo-cline.plusButtonClicked",
7575
"title": "%command.newTask.title%",
76-
"icon": "$(add)"
76+
"icon": "$(edit)"
7777
},
7878
{
7979
"command": "roo-cline.promptsButtonClicked",

0 commit comments

Comments
 (0)