From b2bbccd2c825df522be1fc324f01f799cc78a682 Mon Sep 17 00:00:00 2001 From: Szymon Kłos Date: Wed, 2 Mar 2022 12:00:34 +0100 Subject: lok: fix goto functionality in Accessibility Check dialog Change-Id: Ie9ce42ccdb5cf6c72df3d3d48d3e7369f9e2f9cf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130830 Reviewed-by: Pranam Lashkari Tested-by: Jenkins CollaboraOffice --- sw/source/core/access/AccessibilityIssue.cxx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sw/source/core/access/AccessibilityIssue.cxx b/sw/source/core/access/AccessibilityIssue.cxx index b15d22955a87..f8b8e3858013 100644 --- a/sw/source/core/access/AccessibilityIssue.cxx +++ b/sw/source/core/access/AccessibilityIssue.cxx @@ -11,6 +11,7 @@ #include #include #include +#include namespace sw { @@ -49,12 +50,16 @@ void AccessibilityIssue::gotoIssue() const { SwWrtShell* pWrtShell = m_pDoc->GetDocShell()->GetWrtShell(); pWrtShell->GotoFly(m_sObjectID, FLYCNTTYPE_ALL, true); + if (comphelper::LibreOfficeKit::isActive()) + pWrtShell->ShowCursor(); } break; case IssueObject::TABLE: { SwWrtShell* pWrtShell = m_pDoc->GetDocShell()->GetWrtShell(); pWrtShell->GotoTable(m_sObjectID); + if (comphelper::LibreOfficeKit::isActive()) + pWrtShell->ShowCursor(); } break; case IssueObject::TEXT: @@ -70,6 +75,8 @@ void AccessibilityIssue::gotoIssue() const pPaM->SetMark(); *pPaM->GetMark() = aMark; pWrtShell->EndAllAction(); + if (comphelper::LibreOfficeKit::isActive()) + pWrtShell->ShowCursor(); } break; default: -- cgit