Skip to content

Commit c58446a

Browse files
committed
fix: 2 pin icons coming up in the working files because of conflict
1 parent 0feccb0 commit c58446a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/project/WorkingSetView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1248,7 +1248,7 @@ define(function (require, exports, module) {
12481248
const isPinned = MainViewManager.isPathPinned(this.paneId, file.fullPath);
12491249
if (isPinned) {
12501250
$newItem.addClass("pinned");
1251-
const $pinIcon = $("<div class='pin-icon'><i class='fa-solid fa-thumbtack'></i></div>");
1251+
const $pinIcon = $("<div class='working-set-pin-icon'><i class='fa-solid fa-thumbtack'></i></div>");
12521252
$newItem.append($pinIcon);
12531253
}
12541254

src/styles/brackets.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1443,7 +1443,7 @@ a, img {
14431443
color: @project-panel-text-2;
14441444
}
14451445

1446-
li.pinned .pin-icon {
1446+
li.pinned .working-set-pin-icon {
14471447
position: absolute;
14481448
right: 4px;
14491449
top: 50%;

0 commit comments

Comments
 (0)