Fixed gutter text jittering when horizontal scrolling on docview

This commit is contained in:
rxi
2020-05-14 10:06:47 +01:00
parent 9bf0ed2419
commit bcd1b3a081
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -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