From 16f9360dd00223ab71f40978d9e09531996d87ff Mon Sep 17 00:00:00 2001 From: Jaehwan Kim Date: Tue, 28 May 2013 16:19:12 +0900 Subject: [PATCH] [Scroller] Add the infinite loop feature. Change-Id: I54e1b1af97caf58ba2f0686958c4c159abb97be1 --- themes/widgets/scroller.edc | 53 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/themes/widgets/scroller.edc b/themes/widgets/scroller.edc index bf59881..f626abe 100644 --- a/themes/widgets/scroller.edc +++ b/themes/widgets/scroller.edc @@ -1895,3 +1895,56 @@ group { name: "elm/gengrid/base/handler"; } } } + +group { name: "elm/scroller/contents/default"; + parts { + part { name: "elm.swallow.content"; + type: SWALLOW; + description { state: "default" 0.0; + } + } + part { name: "elm.swallow.content_r"; + type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 1; + rel1 { + relative: 1.0 0.0; + to: "elm.swallow.content"; + } + rel2 { + relative: 2.0 1.0; + to: "elm.swallow.content"; + } + } + } + part { name: "elm.swallow.content_b"; + type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 1; + rel1 { + relative: 0.0 1.0; + to: "elm.swallow.content"; + } + rel2 { + relative: 1.0 2.0; + to: "elm.swallow.content"; + } + } + } + part { name: "elm.swallow.content_rb"; + type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 1; + rel1 { + relative: 1.0 1.0; + to: "elm.swallow.content"; + } + rel2 { + relative: 2.0 2.0; + to: "elm.swallow.content"; + } + } + } + } +} + -- 2.7.4