Change error message from popup to guide text 37/94137/1
authorsungwook79.park <sungwook79.park@samsung.com>
Thu, 27 Oct 2016 06:28:43 +0000 (15:28 +0900)
committersungwook79.park <sungwook79.park@samsung.com>
Thu, 27 Oct 2016 06:28:43 +0000 (15:28 +0900)
Change-Id: I796e71bae0b41b34051c1ef8767d13359c825da6
Signed-off-by: sungwook79.park <sungwook79.park@samsung.com>
src/ise-stt-mode.cpp

index 0b5acf7..1e77c0a 100644 (file)
@@ -391,10 +391,10 @@ static Eina_Bool _start_timer_cb(void* data)
             set_guide_text(voicedata, _(SK_NETWORK_ERROR));
             voicedata->state = STT_STATE_VAL_INIT;
         } else if (e.GetEcode() == STT_ERROR_RECORDER_BUSY) {
-            show_popup_toast(_(SK_STT_BUSY), false);
+            set_guide_text(voicedata, _(SK_STT_BUSY));
             voicedata->state = STT_STATE_VAL_INIT;
         } else {
-            show_popup_toast(_(SK_STT_BUSY), false);
+            set_guide_text(voicedata, _(SK_STT_BUSY));
             voicedata->state = STT_STATE_VAL_INIT;
         }
     }