diff options
| author | Pietro Gagliardi <[email protected]> | 2014-12-11 20:41:35 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-12-11 20:41:35 -0500 |
| commit | 6173857ee79a1ab1296f5278dde9d57f72d7d53c (patch) | |
| tree | d5b9f8fabd7702528be5cb954f211690ca388294 | |
| parent | 6690876c0797829be4deabea8df74f9c19dc8380 (diff) | |
Fixed twitchy text.
| -rw-r--r-- | wintable/new/draw.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
