From 9d9ee6c33b4025fded7ac84ddab71d45b28c706f Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 14 Feb 2014 12:46:53 -0500 Subject: [PATCH] add default comp match for DOCK window types --- src/bin/e_comp_cfdata.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/e_comp_cfdata.c b/src/bin/e_comp_cfdata.c index d8dac6394..487b7ea13 100644 --- a/src/bin/e_comp_cfdata.c +++ b/src/bin/e_comp_cfdata.c @@ -178,6 +178,11 @@ e_comp_cfdata_config_new(void) mat->primary_type = E_WINDOW_TYPE_DND; mat->shadow_style = eina_stringshare_add("still"); + mat = E_NEW(E_Comp_Match, 1); + cfg->match.overrides = eina_list_append(cfg->match.overrides, mat); + mat->primary_type = E_WINDOW_TYPE_DOCK; + mat->shadow_style = eina_stringshare_add("still"); + mat = E_NEW(E_Comp_Match, 1); cfg->match.overrides = eina_list_append(cfg->match.overrides, mat); mat->shadow_style = eina_stringshare_add("popup");