summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2019-11-21 15:45:26 +0100
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2019-11-25 10:10:35 +0100
commit54445260817c51bc00bfeba2e49b4019105299c2 (patch)
tree1b79ad127e658314984267574a5bd0b0c90b6101 /sd
parentb3bd4044d8d0a9d89c251f9640c872924522cfb8 (diff)
tdf#128932 Disable spellcheck while converting shape to bitmap
To not have red underline in the resulting bitmap Change-Id: I5d6ae5767df8e8caf295955bdc0e5a5b6b79d45d Reviewed-on: https://gerrit.libreoffice.org/83404 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> (cherry picked from commit 30e0deb5d0282491af51ef1f533e738194a2d97d) Reviewed-on: https://gerrit.libreoffice.org/83640
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/view/drviews2.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx
index 664609e87597..2be1ccd2c6c2 100644
--- a/sd/source/ui/view/drviews2.cxx
+++ b/sd/source/ui/view/drviews2.cxx
@@ -1108,6 +1108,10 @@ void DrawViewShell::FuTemporary(SfxRequest& rReq)
break;
case SID_CONVERT_TO_BITMAP:
{
+ // Disable spelling during conversion
+ bool bOnlineSpell = GetDoc()->GetOnlineSpell();
+ GetDoc()->SetOnlineSpell(false);
+
// switch on undo for the next operations
mpDrawView->BegUndo(SdResId(STR_UNDO_CONVERT_TO_BITMAP));
bool bDone(false);
@@ -1134,6 +1138,8 @@ void DrawViewShell::FuTemporary(SfxRequest& rReq)
{
aGraphic = Graphic(mpDrawView->GetMarkedObjBitmapEx());
}
+ // Restore online spelling
+ GetDoc()->SetOnlineSpell(bOnlineSpell);
}
break;
}