1
0
mirror of https://github.com/ndarilek/tts-rs.git synced 2024-07-27 07:09:37 +00:00

Use attributes instead.

This commit is contained in:
Nolan Darilek 2021-05-11 20:18:14 -05:00
parent 86b2e07f15
commit 8f5f58028a

View File

@ -531,8 +531,10 @@ impl Tts {
/*
* Returns `true` if a screen reader is available to provide speech.
*/
#[allow(unreachable_code)]
pub fn screen_reader_available() -> bool {
if cfg!(target_os = "windows") {
#[cfg(target_os = "windows")]
{
#[cfg(feature = "tolk")]
{
let tolk = tolk::Tolk::new();
@ -540,9 +542,8 @@ impl Tts {
}
#[cfg(not(feature = "tolk"))]
return false;
} else {
false
}
false
}
}