diff options
author | divyanshugautam17 <divyanshu.gm@samsung.com> | 2020-07-29 17:04:34 +0530 |
---|---|---|
committer | divyanshugautam17 <divyanshu.gm@samsung.com> | 2020-07-29 17:04:34 +0530 |
commit | a011c61e3c6f423345314515fb421c7d1985d78e (patch) | |
tree | 64ef37874964f4d9b410c0397b2c47b7ec55f381 | |
parent | 74fc227d6664310fe65c5ce55187ff0422f1e966 (diff) | |
download | video-player-a011c61e3c6f423345314515fb421c7d1985d78e.tar.gz video-player-a011c61e3c6f423345314515fb421c7d1985d78e.tar.bz2 video-player-a011c61e3c6f423345314515fb421c7d1985d78e.zip |
TIZENIOT-1739 Changed the position and alignment of imagesubmit/tizen/20200729.121054
Change-Id: I4d8b1a586a6d179268a27bd4790cb4cfcfba0c07
-rwxr-xr-x | res/edje/vp-nocontents.edc | 8 | ||||
-rwxr-xr-x | res/po/en_US.po | 4 | ||||
-rwxr-xr-x | src/widget/mp-video-nocontent-layout.c | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/res/edje/vp-nocontents.edc b/res/edje/vp-nocontents.edc index 1a7f088..2e30abe 100755 --- a/res/edje/vp-nocontents.edc +++ b/res/edje/vp-nocontents.edc @@ -110,8 +110,8 @@ group { max: -1 26; fixed: 0 1; align: 0.5 0.0; - rel1 { relative: 0.0 0.7; to: "bg";} - rel2 { relative: 1.0 0.7; to: "bg";} + rel1 { relative: 0.0 0.72; to: "bg";} + rel2 { relative: 1.0 0.72; to: "bg";} color: 6 1 74 255; text { style: "nocontent_style"; @@ -166,8 +166,8 @@ group { max: -1 26; fixed: 0 1; align: 0.5 0.0; - rel1 { relative: 0.0 0.7; to: "nocontents.anim.swallow";} - rel2 { relative: 1.0 0.7; to: "nocontents.anim.swallow";} + rel1 { relative: 0.0 40/720;} + rel2 { relative: 1.0 40/720;} color: 6 1 74 255; text { style: "nosearch_style"; diff --git a/res/po/en_US.po b/res/po/en_US.po index 012d55b..df193fa 100755 --- a/res/po/en_US.po +++ b/res/po/en_US.po @@ -89,7 +89,7 @@ msgid "IDS_VIDEO_HEADER_VIDEO" msgstr "Video" msgid "IDS_VIDEO_NPBODY_NO_VIDEOS" -msgstr "No videos" +msgstr "No Videos Available" msgid "IDS_VIDEO_OPT_DETAILS" msgstr "Details" @@ -365,7 +365,7 @@ msgid "IDS_SWALL_HEADER_INVALID_CHARACTER" msgstr "Invalid character" msgid "IDS_VIDEO_BODY_NO_SEARCH_RESULTS" -msgstr "No search results" +msgstr "No results found" msgid "IDS_GALLERY_HEADER_SELECT" msgstr "Select" diff --git a/src/widget/mp-video-nocontent-layout.c b/src/widget/mp-video-nocontent-layout.c index bf41341..434b69c 100755 --- a/src/widget/mp-video-nocontent-layout.c +++ b/src/widget/mp-video-nocontent-layout.c @@ -84,7 +84,7 @@ Evas_Object *mp_create_nocontent_layout(const Evas_Object * pParent, const char evas_object_size_hint_align_set(pLayout, EVAS_HINT_FILL, EVAS_HINT_FILL); Elm_Animation_View *anim_view = elm_animation_view_add(pLayout); - evas_object_size_hint_min_set(anim_view, ELM_SCALE_SIZE(450), ELM_SCALE_SIZE(350)); + evas_object_size_hint_min_set(anim_view, ELM_SCALE_SIZE(459), ELM_SCALE_SIZE(357)); elm_animation_view_auto_play_set(anim_view, true); elm_animation_view_auto_repeat_set(anim_view, true); elm_animation_view_file_set(anim_view, json_path, NULL); @@ -135,7 +135,7 @@ Evas_Object *mp_create_nosearch_result_layout(const Evas_Object * pParent, const evas_object_size_hint_align_set(pLayout, EVAS_HINT_FILL, EVAS_HINT_FILL); Elm_Animation_View *anim_view = elm_animation_view_add(pLayout); - evas_object_size_hint_min_set(anim_view, ELM_SCALE_SIZE(450), ELM_SCALE_SIZE(350)); + evas_object_size_hint_min_set(anim_view, ELM_SCALE_SIZE(540), ELM_SCALE_SIZE(420)); elm_animation_view_auto_play_set(anim_view, true); elm_animation_view_auto_repeat_set(anim_view, true); elm_animation_view_file_set(anim_view, json_path, NULL); |