From 1ac8217f6114943002730502ebafd8617d2fd5c1 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 13 Sep 2016 16:49:03 +0200 Subject: sw draw text: emit LOK_CALLBACK_TEXT_VIEW_SELECTION from registerCallback() With this, in case the first view has an active text edit selection and a new view is created, then the text selection is instantly visible in the second view, even if the first view's text selection does not change later. Change-Id: I3255febd5d65d6576ddbc57cf96836bdf0b06a72 (cherry picked from commit 2ea385a54b53797ab3960869012f3ce3268eab2c) --- sw/source/core/crsr/crsrsh.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sw/source/core/crsr/crsrsh.cxx') diff --git a/sw/source/core/crsr/crsrsh.cxx b/sw/source/core/crsr/crsrsh.cxx index 44776817a9d4..3a9ebe96ecf8 100644 --- a/sw/source/core/crsr/crsrsh.cxx +++ b/sw/source/core/crsr/crsrsh.cxx @@ -1230,10 +1230,13 @@ void SwCursorShell::NotifyCursor(SfxViewShell* pOtherShell) const auto pView = const_cast(GetDrawView()); if (pView->GetTextEditObject()) { + // Blinking cursor. EditView& rEditView = pView->GetTextEditOutlinerView()->GetEditView(); rEditView.RegisterOtherShell(pOtherShell); rEditView.ShowCursor(); rEditView.RegisterOtherShell(nullptr); + // Text selection, if any. + rEditView.DrawSelection(pOtherShell); } else { -- cgit v1.2.3