summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/source/uibase/shells/textsh.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/sw/source/uibase/shells/textsh.cxx b/sw/source/uibase/shells/textsh.cxx
index ae19de5a72e3..6637429e69b3 100644
--- a/sw/source/uibase/shells/textsh.cxx
+++ b/sw/source/uibase/shells/textsh.cxx
@@ -698,9 +698,13 @@ void SwTextShell::StateInsert( SfxItemSet &rSet )
SfxObjectCreateMode eCreateMode =
GetView().GetDocShell()->GetCreateMode();
- rSh.Push();
- const bool bCrsrInHidden = rSh.SelectHiddenRange();
- rSh.Pop();
+ bool bCrsrInHidden = false;
+ if( !rSh.HasMark() )
+ {
+ rSh.Push();
+ bCrsrInHidden = rSh.SelectHiddenRange();
+ rSh.Pop();
+ }
while ( nWhich )
{