Skip to content

Commit

Permalink
fix #113243.
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix committed Dec 21, 2020
1 parent f0376ac commit e8bb7a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ export class CodeCell extends Disposable {
if (this._activeCellRunPlaceholder === null) {
// const keybinding = this._keybindingService.lookupKeybinding(EXECUTE_CELL_COMMAND_ID);
this._activeCellRunPlaceholder = this.notebookCellStatusBarService.addEntry(getExecuteCellPlaceholder(this.viewCell));
this._register(this._activeCellRunPlaceholder);
}

return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export class StatefulMarkdownCell extends Disposable {
if (this._activeCellRunPlaceholder === null) {
// const keybinding = this._keybindingService.lookupKeybinding(EXECUTE_CELL_COMMAND_ID);
this._activeCellRunPlaceholder = this.notebookCellStatusBarService.addEntry(getExecuteCellPlaceholder(this.viewCell));
this._register(this._activeCellRunPlaceholder);
}

return;
Expand Down

0 comments on commit e8bb7a9

Please sign in to comment.