diff --git a/data/plugins/lineguide.lua b/data/plugins/lineguide.lua index adc67389..b838eebb 100644 --- a/data/plugins/lineguide.lua +++ b/data/plugins/lineguide.lua @@ -6,18 +6,16 @@ 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 - local x = self:get_line_screen_position(1) + offset - local y = self.position.y - local w = math.ceil(SCALE * 1) - local h = self.size.y + local ns = self:get_font():get_width_subpixel("n") * config.line_limit + local ss = self:get_font():subpixel_scale() + local offset = ns / ss + local x = self:get_line_screen_position(1) + offset + local y = self.position.y + local w = math.ceil(SCALE * 1) + local h = self.size.y - local color = style.guide or style.selection - renderer.draw_rect(x, y, w, h, color) - end + local color = style.guide or style.selection + renderer.draw_rect(x, y, w, h, color) draw_overlay(self, ...) end