diff options
Diffstat (limited to 'src/win.c')
| -rw-r--r-- | src/win.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1399,6 +1399,9 @@ static void win_determine_rounded_corners(session_t *ps, struct managed_win *w) c2_match(ps, w, ps->o.rounded_corners_blacklist, NULL)) { w->corner_radius = 0; log_debug("Not rounding corners for window %#010x", w->base.id); + } else if (c2_match(ps, w, ps->o.corner_rules, &val)) { + void *val = NULL; + w->corner_radius = val; } else { w->corner_radius = ps->o.corner_radius; log_debug("Rounding corners for window %#010x", w->base.id); |