From f3496164d087039634c546d4ae5b7980dacea42e Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 1 Jan 2014 14:47:26 -0500 Subject: [PATCH] fix comp theme fast popups to still have shadows --- data/themes/edc/comp.edc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/data/themes/edc/comp.edc b/data/themes/edc/comp.edc index 93561c0..b5b9165 100644 --- a/data/themes/edc/comp.edc +++ b/data/themes/edc/comp.edc @@ -620,6 +620,35 @@ group { name: "e/comp/frame/popup/fast"; color_class: ""; } } + part { name: "shadow"; mouse_events: 0; insert_before: "glow"; + clip_to: "clipper"; + description { state: "default" 0.0; + image.normal: "win_shadow.png"; + image.border: 14 14 14 14; + image.middle: 0; + rel1.to: "e.swallow.content"; + rel1.offset: -7 -3; + rel2.to: "e.swallow.content"; + rel2.offset: 6 11; + fill.smooth: 0; + } + description { state: "hidden" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + } + programs { + program { + signal: "e,state,shadow,on"; source: "e"; + action: STATE_SET "default" 0.0; + target: "shadow"; + } + program { + signal: "e,state,shadow,off"; source: "e"; + action: STATE_SET "hidden" 0.0; + target: "shadow"; + } } } -- 2.7.4