forked from external/yambar
particle/module: pass a cairo context to all begin_expose()
This commit is contained in:
parent
35e9d0e25c
commit
ea38ab3b2f
10 changed files with 16 additions and 16 deletions
|
@ -36,7 +36,7 @@ exposable_destroy(struct exposable *exposable)
|
|||
}
|
||||
|
||||
static int
|
||||
begin_expose(struct exposable *exposable)
|
||||
begin_expose(struct exposable *exposable, cairo_t *cr)
|
||||
{
|
||||
const struct eprivate *e = exposable->private;
|
||||
|
||||
|
@ -44,7 +44,7 @@ begin_expose(struct exposable *exposable)
|
|||
|
||||
for (size_t i = 0; i < e->count; i++) {
|
||||
struct exposable *ee = e->exposables[i];
|
||||
e->widths[i] = ee->begin_expose(ee);
|
||||
e->widths[i] = ee->begin_expose(ee, cr);
|
||||
|
||||
exposable->width += e->left_spacing + e->widths[i] + e->right_spacing;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue