Browse Source

dismiss tooltip on execution

A. Darian 8 years ago
parent
commit
8d8c5802b0
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/notebook/console/model.ts

+ 1 - 0
src/notebook/console/model.ts

@@ -385,6 +385,7 @@ class ConsoleModel implements IConsoleModel {
       this._prompt = this.createPrompt()
       this._cells.add(this._prompt);
     };
+    this.tooltip = null;
     // Whether the code cell executes or not, create a new prompt.
     executeCodeCell(prompt, session.kernel).then(newPrompt, newPrompt);
   }