summaryrefslogtreecommitdiff
path: root/render/html_redraw.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-03-02 18:41:17 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-03-02 18:41:17 +0000
commit3707be6292e5d8c93b121a698f67bb679ff8fba4 (patch)
tree74c63354a8746592f6b0498adc380a0b1e054037 /render/html_redraw.c
parent77f67bccb666876fbeb0081550e0245de7ad411b (diff)
downloadnetsurf-3707be6292e5d8c93b121a698f67bb679ff8fba4.tar.gz
netsurf-3707be6292e5d8c93b121a698f67bb679ff8fba4.tar.bz2
Move printed to box flags.
svn path=/trunk/netsurf/; revision=11888
Diffstat (limited to 'render/html_redraw.c')
-rw-r--r--render/html_redraw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/render/html_redraw.c b/render/html_redraw.c
index c69b24610..e56035f38 100644
--- a/render/html_redraw.c
+++ b/render/html_redraw.c
@@ -267,7 +267,7 @@ bool html_redraw_box(struct box *box, int x_parent, int y_parent,
struct box *bg_box = NULL;
bool has_x_scroll, has_y_scroll;
- if (html_redraw_printing && box->printed)
+ if (html_redraw_printing && (box->flags & PRINTED))
return true;
/* avoid trivial FP maths */
@@ -377,7 +377,7 @@ bool html_redraw_box(struct box *box, int x_parent, int y_parent,
return true;
}
}
- else box->printed = true;/*it won't be printed anymore*/
+ else box->flags |= PRINTED; /*it won't be printed anymore*/
}
/* if visibility is hidden render children only */