Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.

Commit c7d3c79

Browse files
committed
Add custom logo to sidebar
**Custom Branding: Use logo.png for sidebar icon** **Changes:** - Copied logo.png to extension directory - Updated package.json viewsContainers icon from generic git-pull-request to logo.png - Sidebar now shows custom Dialectic logo instead of generic icon **Result:** Dialectic extension has distinctive branding in VSCode activity bar
1 parent 1ff009e commit c7d3c79

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

extension/logo.png

2.12 MB
Loading

extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
{
6565
"id": "dialectic",
6666
"title": "Dialectic",
67-
"icon": "$(git-pull-request)"
67+
"icon": "logo.png"
6868
}
6969
]
7070
},

extension/src/extension.ts

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -572,17 +572,11 @@ class DaemonClient implements vscode.Disposable {
572572
private async collectUserFeedback(reviewId: string): Promise<UserFeedback> {
573573
this.currentReviewId = reviewId;
574574

575+
// Automatically show the review
576+
vscode.commands.executeCommand('dialectic.showReview');
577+
575578
return new Promise<UserFeedback>((resolve) => {
576579
this.pendingFeedbackResolvers.set(reviewId, resolve);
577-
578-
vscode.window.showInformationMessage(
579-
'Review ready! Use the action buttons in the Dialectic tree view to provide feedback.',
580-
'Show Tree View'
581-
).then((selection) => {
582-
if (selection === 'Show Tree View') {
583-
vscode.commands.executeCommand('dialectic.showReview');
584-
}
585-
});
586580
});
587581
}
588582

0 commit comments

Comments
 (0)