sd/source/ui/view/drtxtob1.cxx | 6 ++++++ 1 file changed, 6 insertions(+)
New commits: commit f8ba3e24a48752414c5f69faec7d71ba387e1441 Author: Jim Raykowski <[email protected]> AuthorDate: Sun Jun 23 16:00:19 2019 -0800 Commit: Xisco Faulí <[email protected]> CommitDate: Thu Jul 4 10:50:22 2019 +0200 tdf#50530 Make text edit outliner view show cursor Change-Id: I73b4dcacdf068daff02b8fe8156c58debfcdf704 Reviewed-on: https://gerrit.libreoffice.org/74613 Tested-by: Jenkins Reviewed-by: Jim Raykowski <[email protected]> (cherry picked from commit 80f18e7e028e9ca431aef281ab98bea99ad19fa3) Reviewed-on: https://gerrit.libreoffice.org/75048 Reviewed-by: Xisco Faulí <[email protected]> diff --git a/sd/source/ui/view/drtxtob1.cxx b/sd/source/ui/view/drtxtob1.cxx index fb89f6290d6f..53f5e4ce8114 100644 --- a/sd/source/ui/view/drtxtob1.cxx +++ b/sd/source/ui/view/drtxtob1.cxx @@ -755,6 +755,12 @@ void TextObjectBar::Execute( SfxRequest &rReq ) // to refresh preview (in outline mode), slot has to be invalidated: mpViewShell->GetViewFrame()->GetBindings().Invalidate( SID_PREVIEW_STATE, true ); + + if ( pOLV ) + { + pOLV->ShowCursor(); + pOLV->GetWindow()->GrabFocus(); + } } break; } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
