raster pushed a commit to branch master. http://git.enlightenment.org/apps/rage.git/commit/?id=edc845b9e9531d94b15ba399f3cc14b940abd191
commit edc845b9e9531d94b15ba399f3cc14b940abd191 Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Fri Aug 15 18:00:55 2014 +0900 fix album art clip on new art find --- data/themes/default.edc | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/data/themes/default.edc b/data/themes/default.edc index 7aa1fbc..bdf2ab8 100644 --- a/data/themes/default.edc +++ b/data/themes/default.edc @@ -304,7 +304,7 @@ collections { image.normal: "speaker-base.png"; } } - part { name: "art_clip"; type: RECT; mouse_events: 0; + part { name: "art_clip"; type: RECT; clip_to: "speaker_clip"; description { state: "default" 0.0; visible: 0; @@ -324,9 +324,17 @@ collections { color: 255 255 255 255; } } - part { name: "rage.art"; type: SWALLOW; mouse_events: 0; + part { name: "art_clip2"; type: RECT; clip_to: "art_clip"; description { state: "default" 0.0; + rel1.to: "speaker_base"; + rel2.to: "speaker_base"; + fixed: 1 1; + } + } + part { name: "rage.art"; type: SWALLOW; mouse_events: 0; + clip_to: "art_clip2"; + description { state: "default" 0.0; rel1.to: "art_clip"; rel2.to: "art_clip"; } --