revert config.lineguide option

This commit is contained in:
takase1121 2021-08-02 09:54:55 +08:00
parent 3b3677ca4b
commit 1725b3ab83
1 changed files with 9 additions and 11 deletions

View File

@ -6,7 +6,6 @@ local DocView = require "core.docview"
local draw_overlay = DocView.draw_overlay
function DocView:draw_overlay(...)
if config.lineguide then
local ns = self:get_font():get_width_subpixel("n") * config.line_limit
local ss = self:get_font():subpixel_scale()
local offset = ns / ss
@ -17,7 +16,6 @@ function DocView:draw_overlay(...)
local color = style.guide or style.selection
renderer.draw_rect(x, y, w, h, color)
end
draw_overlay(self, ...)
end