Implement redraw request hander for treeview test parsite.

This commit is contained in:
Michael Drake 2013-05-31 17:57:28 +01:00
parent ab403b2517
commit 03eb4ec30f

View File

@ -181,6 +181,11 @@ struct tree {
static void treeview_test_redraw_request(struct core_window *cw, struct rect r)
{
struct tree *tree = cw;
tree->callbacks->redraw_request(r.x0, r.y0,
r.x1 - r.x0, r.y1 - r.y0,
tree->client_data);
}
static void treeview_test_update_size(struct core_window *cw,