##// END OF EJS Templates
fix tooltip cancel...
MinRK -
Show More
@@ -167,12 +167,12 b' var IPython = (function (IPython) {'
167 // note that we don't handle closing directly inside the calltip
167 // note that we don't handle closing directly inside the calltip
168 // as in the completer, because it is not focusable, so won't
168 // as in the completer, because it is not focusable, so won't
169 // get the event.
169 // get the event.
170 this.cancel_pending();
170 if (!this._hidden) {
171 if (!this._hidden) {
171 if (force || !this._sticky) {
172 if (force || !this._sticky) {
172 this.cancel_stick();
173 this.cancel_stick();
173 this._hide();
174 this._hide();
174 }
175 }
175 this.cancel_pending();
176 this.reset_tabs_function();
176 this.reset_tabs_function();
177 return true;
177 return true;
178 } else {
178 } else {
General Comments 0
You need to be logged in to leave comments. Login now