[Libreoffice-commits] core.git: sw/source

Niklas Johansson sleeping.pillow at gmail.com
Wed Sep 16 01:44:33 PDT 2015


 sw/source/core/access/accportions.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 64bf04de183a63d32fddf9376307b7f991a4519a
Author: Niklas Johansson <sleeping.pillow at gmail.com>
Date:   Tue Sep 8 08:38:48 2015 +0200

    tdf#93139 Orca Screen Reader does not read bullet
    
    To make Orca read bullet lists lets not suppress it
    from the accessible text. This has a downside on Windows
    when using NVDA which due to a hack in NVDA now reads
    the bullet twice. This hack is done because of this
    bug so I think we should fix it.
    
    Change-Id: Ibc11c1e0545f8cde4cd3d4a0d665ea47d645a61d
    Reviewed-on: https://gerrit.libreoffice.org/18398
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Jacobo Aragunde PĂ©rez <jaragunde at igalia.com>

diff --git a/sw/source/core/access/accportions.cxx b/sw/source/core/access/accportions.cxx
index 9713574..c0a6073 100644
--- a/sw/source/core/access/accportions.cxx
+++ b/sw/source/core/access/accportions.cxx
@@ -154,7 +154,6 @@ void SwAccessiblePortionData::Special(
             sDisplay = OUString(sal_Unicode(0xfffc));
             break;
         case POR_GRFNUM:
-        case POR_BULLET:
             break;
         case POR_FLD:
         case POR_HIDDEN:
@@ -180,6 +179,7 @@ void SwAccessiblePortionData::Special(
             }
             break;
         case POR_NUMBER:
+        case POR_BULLET:
         {
             sDisplay = rText + " ";
             break;


More information about the Libreoffice-commits mailing list