disable comp shadows for override windows with titles that begin with "noshadow"

This commit is contained in:
Mike Blumenkrantz 2013-05-28 13:14:57 +01:00
parent 0eb88a495d
commit e772799f4d
1 changed files with 1 additions and 1 deletions

View File

@ -1667,7 +1667,7 @@ _e_comp_win_shadow_setup(E_Comp_Win *cw)
clas = cw->clas;
role = cw->role;
primary_type = cw->primary_type;
skip = (conf->match.disable_overrides);
skip = conf->match.disable_overrides || (title && (!strncmp(title, "noshadow", 8)));
fast = conf->fast_overrides;
}