TizenRefApp-7440 [RTL] Slideshow timeline and buttons reversed. 79/92879/1
authorDenis Dolzhenko <d.dolzhenko@samsung.com>
Wed, 19 Oct 2016 08:21:11 +0000 (11:21 +0300)
committerDenis Dolzhenko <d.dolzhenko@samsung.com>
Wed, 19 Oct 2016 08:21:11 +0000 (11:21 +0300)
Change-Id: I1f248a808d97fdca12cf4e3d52132280fe36ab52
Signed-off-by: Denis Dolzhenko <d.dolzhenko@samsung.com>
res/edje/viewer_subject_layout.edc
src/Viewer/View/src/PlayerControl.cpp

index 67cfc09edbf59a83b21eea412dd7508c4bcef739..627a6b8d097ad9e20d6d723cf25078f970d68492 100644 (file)
@@ -95,7 +95,7 @@ collections {
                     color: COLOR_GRAY_TITLE_TEXT_EDC;
                     text {
                         size: PAGEINDEX_SIZE;
-                        align: 0.0 0.5;
+                        align: -1.0 0.5;
                         text_class: "label";
                     }
                 }
index 708d9f1b18f7af397b9d36b98da3b6e2fadc4986..bdedd28af788022caba5af25d2862dd96a724a2f 100644 (file)
@@ -66,6 +66,7 @@ void PlayerControl::setProgress(double percentage)
 Evas_Object *PlayerControl::createPlayer(Evas_Object *parent)
 {
     Evas_Object *layout = addLayout(parent, VIEWER_PALYER_EDJ_PATH, groupName);
+    elm_object_mirrored_automatic_set(layout, false);
     elm_object_signal_callback_add(layout, playCb, "", EDJE_SIGNAL_CALLBACK(PlayerControl, onPlay), this);
     elm_object_signal_callback_add(layout, pauseCb, "",  EDJE_SIGNAL_CALLBACK(PlayerControl, onPause), this);
     elm_object_signal_callback_add(layout, nextCb, "",  EDJE_SIGNAL_CALLBACK(PlayerControl, onNext), this);
@@ -76,6 +77,7 @@ Evas_Object *PlayerControl::createPlayer(Evas_Object *parent)
 Evas_Object *PlayerControl::createProgress(Evas_Object *parent)
 {
     m_pProgress = elm_progressbar_add(parent);
+    elm_object_mirrored_automatic_set(m_pProgress, false);
     elm_progressbar_horizontal_set(m_pProgress, true);
     elm_progressbar_unit_format_set(m_pProgress, nullptr);
     elm_progressbar_pulse_set(m_pProgress, true);