orca r4049 - in trunk: . src/orca



Author: wwalker
Date: Sat Jul 19 21:01:34 2008
New Revision: 4049
URL: http://svn.gnome.org/viewvc/orca?rev=4049&view=rev

Log:
Fix for bug #543775 - Orca uses incorrect voice sometimes in text setup


Modified:
   trunk/ChangeLog
   trunk/src/orca/orca_console_prefs.py

Modified: trunk/src/orca/orca_console_prefs.py
==============================================================================
--- trunk/src/orca/orca_console_prefs.py	(original)
+++ trunk/src/orca/orca_console_prefs.py	Sat Jul 19 21:01:34 2008
@@ -387,18 +387,21 @@
     # has a numeric keypad) and laptop (i.e., small and compact) keyboard
     # layouts for how they might control Orca.
     #
-    sayAndPrint(_("1. Desktop"))
+    sayAndPrint(_("1. Desktop"),
+                False, False, speechServerChoice, speechVoiceChoice)
 
     # Translators: we allow the user to choose between the desktop (i.e.,
     # has a numeric keypad) and laptop (i.e., small and compact) keyboard
     # layouts for how they might control Orca.
     #
-    sayAndPrint(_("2. Laptop"))
+    sayAndPrint(_("2. Laptop"),
+                False, False, speechServerChoice, speechVoiceChoice)
 
     try:
         # Translators: this is prompting for a numerical choice.
         #
-        choice = int(sayAndPrint(_("Enter choice: "), False, True))
+        choice = int(sayAndPrint(_("Enter choice: "),
+                     False, True, speechServerChoice, speechVoiceChoice))
     except:
         choice = -1
     if choice == 2:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]