fix comp theme fast popups to still have shadows

This commit is contained in:
Mike Blumenkrantz 2014-01-01 14:47:26 -05:00
parent e306137456
commit ad204eec40
1 changed files with 29 additions and 0 deletions

View File

@ -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";
}
}
}