From 6173857ee79a1ab1296f5278dde9d57f72d7d53c Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 11 Dec 2014 20:41:35 -0500 Subject: [PATCH] Fixed twitchy text. --- wintable/new/draw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wintable/new/draw.h b/wintable/new/draw.h index e64b613..2081581 100644 --- a/wintable/new/draw.h +++ b/wintable/new/draw.h @@ -49,7 +49,7 @@ static void draw(struct table *t, HDC dc, RECT cliprect, RECT client) ZeroMemory(&p, sizeof (struct drawCellParams)); p.row = 0; p.column = 0; - p.x = r.left - t->hscrollpos; + p.x = r.left; p.y = 100; p.width = r.right - r.left; p.height = rowHeight(t, dc, FALSE);