[Progressbar] send pulse start signal even when pulse is not set 48/53248/1
authorSung-Taek Hong <sth253.hong@samsung.com>
Thu, 3 Dec 2015 06:27:12 +0000 (15:27 +0900)
committerSung-Taek Hong <sth253.hong@samsung.com>
Thu, 3 Dec 2015 06:27:16 +0000 (15:27 +0900)
Change-Id: Ib8ae84058ee16ce1b19535609b123df07efb75a7
Signed-off-by: Sung-Taek Hong <sth253.hong@samsung.com>
src/lib/elm_progressbar.c

index 66a2f96..18630cb 100644 (file)
@@ -369,7 +369,11 @@ EOLIAN static void
 _elm_progressbar_pulse(Eo *obj, Elm_Progressbar_Data *sd, Eina_Bool state)
 {
    state = !!state;
-   if ((!sd->pulse) || (sd->pulse_state == state)) return;
+   //////////////////////////////////////////////////////////////////////
+   //TIZEN_ONLY(20150128): progress pulse policy is diffrent with spin.
+   //if ((!sd->pulse) || (sd->pulse_state == state)) return;
+   if ((!sd->pulse) && (sd->pulse_state == state)) return;
+   //////////////////////////////////////////////////////////////////////
 
    sd->pulse_state = state;