diff options
-rw-r--r-- | sw/source/core/crsr/viscrs.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sw/source/core/crsr/viscrs.cxx b/sw/source/core/crsr/viscrs.cxx index 2e8543d753db..3c62a4ad48ce 100644 --- a/sw/source/core/crsr/viscrs.cxx +++ b/sw/source/core/crsr/viscrs.cxx @@ -339,7 +339,11 @@ void SwSelPaintRects::Show() } } - if (GetShell()->isTiledRendering()) + // Tiled editing does not expose the draw and writer cursor, it just + // talks about "the" cursor at the moment. As long as that's true, + // don't say anything about the Writer cursor till a draw object is + // being edited. + if (GetShell()->isTiledRendering() && !pView->GetTextEditObject()) { if (!empty()) { |