From 7dc9b2dbf5c1c6c9ce6fb65a19f39cc6b39fdf43 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 25 Jul 2012 15:32:15 -0600 Subject: [PATCH] Fix bug where short folded lines don't always span the scroll view --- src/app/editor.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/editor.coffee b/src/app/editor.coffee index 2727f0a56..ec242ecd5 100644 --- a/src/app/editor.coffee +++ b/src/app/editor.coffee @@ -661,7 +661,7 @@ class Editor extends View if width > @scrollView.width() @renderedLines.width(width) else - @renderedLines.width("inherit") + @renderedLines.css('width', '') handleScrollHeightChange: -> scrollHeight = @lineHeight * @screenLineCount()