From 20eba7438bb6c15a7c91702ec5bc4cd35b05e9bc Mon Sep 17 00:00:00 2001 From: Jon Rohan Date: Wed, 26 Dec 2012 22:16:18 -0800 Subject: [PATCH] making the underlayer min-height instead of height, to see the wrap guide go full screen --- 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 446a82b1b..e62622c98 100644 --- a/src/app/editor.coffee +++ b/src/app/editor.coffee @@ -746,7 +746,7 @@ class Editor extends View height = @lineHeight * @screenLineCount() unless @layerHeight == height @renderedLines.height(height) - @underlayer.height(height) + @underlayer.css('min-height', height) @overlayer.height(height) @layerHeight = height