summaryrefslogtreecommitdiffstats
path: root/sd
diff options
context:
space:
mode:
authorJim Raykowski <raykowj@gmail..com>2019-12-28 21:20:05 -0900
committerXisco FaulĂ­ <xiscofauli@libreoffice.org>2020-01-17 13:29:08 +0100
commit9b4ffa3a111dd91842ae53e74454f0c752ba4ffe (patch)
treec467b99ad0594e403ca215f4357f1006fb07e9f7 /sd
parenttdf#126795 docx export: do not output tab stops twice (diff)
downloadcore-9b4ffa3a111dd91842ae53e74454f0c752ba4ffe.tar.gz
core-9b4ffa3a111dd91842ae53e74454f0c752ba4ffe.zip
tdf#129680 Make text edit outliner view show cursor
Better placement of tdf#50530 fix 80f18e7e028e9ca431aef281ab98bea99ad19fa3 Change-Id: If6a83d94ebd52ada34d800f8270fa82b4260fdbf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86099 Tested-by: Jenkins Reviewed-by: Jim Raykowski <raykowj@gmail.com> (cherry picked from commit 1840ed1ede481d28c1a75e2767357866f6f1c55a) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86957 Reviewed-by: Xisco FaulĂ­ <xiscofauli@libreoffice.org>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/view/drtxtob1.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/ui/view/drtxtob1.cxx b/sd/source/ui/view/drtxtob1.cxx
index 53f5e4ce8114..01b30cbe35ff 100644
--- a/sd/source/ui/view/drtxtob1.cxx
+++ b/sd/source/ui/view/drtxtob1.cxx
@@ -755,16 +755,16 @@ 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;
}
+ if ( pOLV )
+ {
+ pOLV->ShowCursor();
+ pOLV->GetWindow()->GrabFocus();
+ }
+
Invalidate( SID_OUTLINE_LEFT );
Invalidate( SID_OUTLINE_RIGHT );
Invalidate( SID_OUTLINE_UP );