Pass the right bounds when painting gutter

x and y were flipped around, yikes.
This commit is contained in:
Antonio Scandurra 2021-03-26 17:21:44 +01:00
parent 2c24ec2e46
commit a2790481a6

View File

@ -183,7 +183,7 @@ impl BufferElement {
ix as f32 * line_height - (scroll_top % line_height),
);
line.paint(
RectF::new(line_origin, vec2f(line_height, line.width)),
RectF::new(line_origin, vec2f(line.width, line_height)),
&[(0..line.len, ColorU::black())],
ctx,
);