View | Details | Raw Unified | Return to bug 432313
Collapse All | Expand All

(-)a/plugins/blur.c (-3 / +3 lines)
Lines 2735-2744 blurMatchPropertyChanged (CompDisplay *d, Link Here
2735
}
2735
}
2736
2736
2737
static void
2737
static void
2738
blurWindowAdd (CompScreen *s,
2738
blurWindowAdd (CompObject *parent,
2739
	       CompWindow *w)
2739
	       CompWindow *w)
2740
{
2740
{
2741
    BLUR_SCREEN (s);
2741
    BLUR_SCREEN (w->screen);
2742
2742
2743
    blurWindowUpdate (w, BLUR_STATE_CLIENT);
2743
    blurWindowUpdate (w, BLUR_STATE_CLIENT);
2744
    blurWindowUpdate (w, BLUR_STATE_DECOR);
2744
    blurWindowUpdate (w, BLUR_STATE_DECOR);
Lines 3113-3119 blurInitWindow (CompPlugin *p, Link Here
3113
    w->base.privates[bs->windowPrivateIndex].ptr = bw;
3113
    w->base.privates[bs->windowPrivateIndex].ptr = bw;
3114
3114
3115
    if (w->base.parent)
3115
    if (w->base.parent)
3116
	blurWindowAdd (w->screen, w);
3116
	blurWindowAdd (w->base.parent, w);
3117
3117
3118
    return TRUE;
3118
    return TRUE;
3119
}
3119
}

Return to bug 432313