From: Shinwoo Kim Date: Tue, 25 Jun 2013 05:50:00 +0000 (+0900) Subject: [access] remove comma from text to read - TTS engine issue, Tizen only X-Git-Tag: accepted/tizen/20130927.071315^2~132 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=56f6d1ba2dab115ede4377eafc795844cd18c24a;p=profile%2Fmobile%2Felementary.git [access] remove comma from text to read - TTS engine issue, Tizen only Change-Id: I012479b45f69828480cd7dceff8734cd0d1db268 --- diff --git a/src/lib/elm_access.c b/src/lib/elm_access.c index c01e82a..d507af6 100644 --- a/src/lib/elm_access.c +++ b/src/lib/elm_access.c @@ -273,7 +273,7 @@ _access_highlight_read(Elm_Access_Info *ac, Evas_Object *obj) if (txt && (strlen(txt) > 0)) { if (eina_strbuf_length_get(strbuf) > 0) - eina_strbuf_append_printf(strbuf, ", %s", txt); + eina_strbuf_append_printf(strbuf, " %s", txt); else eina_strbuf_append(strbuf, txt);