Add return statements to (hopefully) make conditional compilation actually compile.

This commit is contained in:
Nolan Darilek 2020-05-19 09:14:40 -05:00
parent aa718c5fe6
commit f81486a02c

View File

@ -93,9 +93,9 @@ impl TTS {
#[cfg(windows)] #[cfg(windows)]
{ {
let tolk = tolk::Tolk::new(); let tolk = tolk::Tolk::new();
tolk.detect_screen_reader().is_some() return tolk.detect_screen_reader().is_some()
} }
false return false;
}) })
.done(); .done();
} }