diff --git a/data/core/commandview.lua b/data/core/commandview.lua index 1809180..e2ad9d8 100644 --- a/data/core/commandview.lua +++ b/data/core/commandview.lua @@ -211,6 +211,7 @@ function CommandView:draw_line_gutter(idx, x, y) local pos = self.position local color = common.lerp(style.text, style.accent, self.gutter_text_brightness / 100) core.push_clip_rect(pos.x, pos.y, self:get_gutter_width(), self.size.y) + x = x + style.padding.x renderer.draw_text(self:get_font(), self.label, x, y + yoffset, color) core.pop_clip_rect() end diff --git a/data/core/docview.lua b/data/core/docview.lua index 77785a3..1cdc89a 100644 --- a/data/core/docview.lua +++ b/data/core/docview.lua @@ -330,7 +330,7 @@ function DocView:draw_line_gutter(idx, x, y) color = style.line_number2 end local yoffset = self:get_line_text_y_offset() - x = x + self.scroll.x + x = style.padding.x renderer.draw_text(self:get_font(), idx, x, y + yoffset, color) end @@ -345,7 +345,7 @@ function DocView:draw() local lh = self:get_line_height() local _, y = self:get_line_screen_position(minline) - local x = self:get_content_offset() + style.padding.x + local x = self.position.x for i = minline, maxline do self:draw_line_gutter(i, x, y) y = y + lh