orca r4011 - in trunk: . src/orca/scripts/apps/Thunderbird



Author: richb
Date: Mon Jun 30 19:24:21 2008
New Revision: 4011
URL: http://svn.gnome.org/viewvc/orca?rev=4011&view=rev

Log:
        * src/orca/scripts/apps/Thunderbird/script.py:
          Fix for bug #540833 - Word echo not working in Thunderbird 
          address fields if autocompletion is not active.


Modified:
   trunk/ChangeLog
   trunk/src/orca/scripts/apps/Thunderbird/script.py

Modified: trunk/src/orca/scripts/apps/Thunderbird/script.py
==============================================================================
--- trunk/src/orca/scripts/apps/Thunderbird/script.py	(original)
+++ trunk/src/orca/scripts/apps/Thunderbird/script.py	Mon Jun 30 19:24:21 2008
@@ -311,8 +311,9 @@
                 if self._lastAutoComplete != address:
                     speech.speak(address)
                 self._lastAutoComplete = address
-        else:
-            Gecko.Script.onTextInserted(self, event)
+                return
+
+        Gecko.Script.onTextInserted(self, event)
 
     def onVisibleDataChanged(self, event):
         """Called when the visible data of an object changes."""



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