(svn r25920) -Fix: Story page content was clipped incorrectly and was drawn past the bottom end.

This commit is contained in:
frosch 2013-10-28 10:40:52 +00:00
parent 6872e8c63c
commit 7fbe7895ef
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ public:
/* Set up a clipping region for the panel. */
DrawPixelInfo tmp_dpi;
if (!FillDrawPixelInfo(&tmp_dpi, x, y, right - x + 1, r.bottom - y + 1)) return;
if (!FillDrawPixelInfo(&tmp_dpi, x, y, right - x + 1, bottom - y + 1)) return;
DrawPixelInfo *old_dpi = _cur_dpi;
_cur_dpi = &tmp_dpi;