Explorar el Código

dismiss tooltip on execution

A. Darian hace 8 años
padre
commit
8d8c5802b0
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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);
   }