[orca] Fix for bgo#617603 - OO Cell numbers not spoken in Ubuntu.



commit 56dc5b4190156ca8351ce054e5805e3d1de800ce
Author: Mesar Hameed <mhameed src gnome org>
Date:   Thu May 6 07:02:04 2010 +0100

    Fix for bgo#617603 - OO Cell numbers not spoken in Ubuntu.

 src/orca/scripts/apps/soffice/script.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/orca/scripts/apps/soffice/script.py b/src/orca/scripts/apps/soffice/script.py
index a4ef1f5..a5b8b24 100644
--- a/src/orca/scripts/apps/soffice/script.py
+++ b/src/orca/scripts/apps/soffice/script.py
@@ -695,7 +695,7 @@ class Script(default.Script):
             else:
                 return False
         else:
-            return table.nRows == 65536
+            return table.nRows in [65536, 1048576]
 
     def isDesiredFocusedItem(self, obj, rolesList):
         """Called to determine if the given object and it's hierarchy of



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