projects
/
platform
/
core
/
uifw
/
tts.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bef3d65
)
Fix order of checking condition for screen reader
84/264584/1
author
Suyeon Hwang
<stom.hwang@samsung.com>
Mon, 27 Sep 2021 01:39:54 +0000
(10:39 +0900)
committer
Suyeon Hwang
<stom.hwang@samsung.com>
Mon, 27 Sep 2021 01:39:54 +0000
(10:39 +0900)
Change-Id: Ifcf74312c89105474ca0281b75ff91c1951681db
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
client/tts_core.c
patch
|
blob
|
history
diff --git
a/client/tts_core.c
b/client/tts_core.c
index 0afa2c050bc4a12736c7f84922cf4dc4d0b3d66b..92b3579c8cd1b30ad6c2a5e5546d14314c7d08ec 100644
(file)
--- a/
client/tts_core.c
+++ b/
client/tts_core.c
@@
-961,7
+961,7
@@
bool tts_core_check_screen_reader(tts_client_s* client)
}
tts_mode_e mode = tts_client_get_mode(client);
- if (
false == __is_screen_reader_turned_on() && TTS_MODE_SCREEN_READER == mode
) {
+ if (
TTS_MODE_SCREEN_READER == mode && false == __is_screen_reader_turned_on()
) {
return false;
}