From fae43d51d477f1d7de2d56b2dd20fad475dedfba Mon Sep 17 00:00:00 2001 From: MinRK Date: Tue, 26 Jun 2012 11:45:12 -0700 Subject: [PATCH] double auto-scroll threshold to 100 lines it is more important that we not be surprising or annoying than we hide moderately long output. --- IPython/frontend/html/notebook/static/js/outputarea.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/frontend/html/notebook/static/js/outputarea.js b/IPython/frontend/html/notebook/static/js/outputarea.js index ed1a7c5be..d79e77b0c 100644 --- a/IPython/frontend/html/notebook/static/js/outputarea.js +++ b/IPython/frontend/html/notebook/static/js/outputarea.js @@ -62,7 +62,7 @@ var IPython = (function (IPython) { OutputArea.prototype._should_scroll = function (lines) { if (!lines) { - lines = 50; + lines = 100; } // line-height from http://stackoverflow.com/questions/1185151 var fontSize = this.element.css('font-size');