summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiklas Johansson <sleeping.pillow@gmail.com>2015-09-08 08:38:48 +0200
committerJacobo Aragunde Pérez <jaragunde@igalia.com>2015-09-16 08:44:00 +0000
commit64bf04de183a63d32fddf9376307b7f991a4519a (patch)
tree555cc75953bb395c4cd90eca24503e4619702333
parent93a0696e74e96e5a5ca821f33cb791b87e876f49 (diff)
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@libreoffice.org> Reviewed-by: Jacobo Aragunde Pérez <jaragunde@igalia.com>
-rw-r--r--sw/source/core/access/accportions.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/access/accportions.cxx b/sw/source/core/access/accportions.cxx
index 9713574844c1..c0a607394c31 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;