double auto-scroll threshold to 100 lines

it is more important that we not be surprising or annoying than we hide moderately long output.
This commit is contained in:
MinRK 2012-06-26 11:45:12 -07:00
parent da17f26fbe
commit fae43d51d4

View File

@ -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');