Skip to content

Commit

Permalink
Fix codechecker.executor.showOutput command
Browse files Browse the repository at this point in the history
  • Loading branch information
Discookie committed Apr 8, 2024
1 parent 3515f05 commit a367ad4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/editor/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class ExecutorAlerts {

init() {
this.statusBarItem.text = 'CodeChecker: not running';
this.statusBarItem.command = { title: '', command: 'codechecker.logging.showOutput' };
this.statusBarItem.command = { title: '', command: 'codechecker.executor.showOutput' };
this.statusBarItem.show();
}

Expand Down
2 changes: 1 addition & 1 deletion src/editor/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class LoggerPanel {
ctx.subscriptions.push(this.window = window.createOutputChannel('CodeChecker'));

ctx.subscriptions.push(
commands.registerCommand('codechecker.logging.showOutput', this.showOutputTab, this)
commands.registerCommand('codechecker.executor.showOutput', this.showOutputTab, this)
);

ExtensionApi.executorBridge.bridgeMessages(this.window.append, this.window, ctx.subscriptions);
Expand Down

0 comments on commit a367ad4

Please sign in to comment.