[orca] Adjustment to the fix for bug #520595 - Orca is far too "chatty" for persons with learning disabilit
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Adjustment to the fix for bug #520595 - Orca is far too "chatty" for persons with learning disabilit
- Date: Sun, 5 Sep 2010 20:55:25 +0000 (UTC)
commit 09d363a8b5e41e116f0c0f7d62a2d905f3ab3df8
Author: Joanmarie Diggs <joanmarie diggs gmail com>
Date: Sun Sep 5 16:49:24 2010 -0400
Adjustment to the fix for bug #520595 - Orca is far too "chatty" for persons with learning disabilities
Based on feedback from several sources, it is desirable to have feedback
from commands (time, date, learn mode, etc.) spoken even though that text
is not displayed on screen. This change causes all messages which are
presented via speakMessage or presentMessage to be spoken using the
system voice. We can make further adjustments as we get additional input
from the LD community on which messages should be silenced.
src/orca/default.py | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/src/orca/default.py b/src/orca/default.py
index 8011de5..24b7430 100644
--- a/src/orca/default.py
+++ b/src/orca/default.py
@@ -5402,8 +5402,7 @@ class Script(script.Script):
if briefMessage is None:
briefMessage = fullMessage
- if settings.enableSpeech \
- and (voice != None or not settings.onlySpeakDisplayedText):
+ if settings.enableSpeech:
if settings.messageVerbosityLevel == settings.VERBOSITY_LEVEL_BRIEF:
message = briefMessage
else:
@@ -5764,8 +5763,7 @@ class Script(script.Script):
prior to speaking the new text.
"""
- if settings.enableSpeech \
- and (voice != None or not settings.onlySpeakDisplayedText):
+ if settings.enableSpeech:
voice = voice or self.voices.get(settings.SYSTEM_VOICE)
speech.speak(string, voice, interrupt)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]