diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-08-01 16:34:56 +0100 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2023-08-04 15:39:40 +0200 |
commit | b6edb8e053005cf9a65aa118c4496c25c073e9d0 (patch) | |
tree | b180828e5981a82c202ea1da18dc4b7e6346952d /sc/source | |
parent | e59780c1e0670c4a79bd465da08d5cf51d421f62 (diff) |
cool#6911 draw the note indicator browser-side
Change-Id: I0770641bbd1c6d023cbd14ad9404256cc92892c4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155223
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/ui/view/output.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx index c43a903484cd..ae7a33bfdf49 100644 --- a/sc/source/ui/view/output.cxx +++ b/sc/source/ui/view/output.cxx @@ -2376,6 +2376,9 @@ void ScOutputData::DrawSparklines(vcl::RenderContext& rRenderContext) //TODO: moggi Need to check if this can't be written simpler void ScOutputData::DrawNoteMarks(vcl::RenderContext& rRenderContext) { + // cool#6911 draw the note indicator browser-side instead + if (comphelper::LibreOfficeKit::isActive()) + return; tools::Long nInitPosX = nScrX; if ( bLayoutRTL ) |