hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=1cd13a93f9100bf16e705e340dd49127c660fc15
commit 1cd13a93f9100bf16e705e340dd49127c660fc15 Author: ChunEon Park <her...@hermet.pe.kr> Date: Tue Dec 23 18:37:48 2014 +0900 lib/liveview: clip the content if it's over the maximum view size. --- data/themes/default/layout_common.edc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/data/themes/default/layout_common.edc b/data/themes/default/layout_common.edc index 8564cc1..f9d823d 100644 --- a/data/themes/default/layout_common.edc +++ b/data/themes/default/layout_common.edc @@ -1450,6 +1450,13 @@ group { name: "live_edit_layout"; group { name: "viewer_layout_bg"; parts { + part { name: "clipper"; + type: RECT; + description { state: "default" 0.0; + rel1.to: "bg"; + rel2.to: "bg"; + } + } part { name: "bg"; type: IMAGE; description { state: "default" 0.0; @@ -1464,6 +1471,7 @@ group { name: "viewer_layout_bg"; } part { name: "elm.swallow.content"; type: SWALLOW; + clip_to: "clipper"; description { state: "default" 0.0; } } --