[Libreoffice-commits] core.git: sd/source

Samuel Mehrbrodt (via logerrit) logerrit at kemper.freedesktop.org
Sat Nov 23 20:27:56 UTC 2019


 sd/source/ui/view/drviews2.cxx |    6 ++++++
 1 file changed, 6 insertions(+)

New commits:
commit 30e0deb5d0282491af51ef1f533e738194a2d97d
Author:     Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
AuthorDate: Thu Nov 21 15:45:26 2019 +0100
Commit:     Thorsten Behrens <Thorsten.Behrens at CIB.de>
CommitDate: Sat Nov 23 21:26:50 2019 +0100

    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 at CIB.de>

diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx
index d1f037bf2b69..a31599291056 100644
--- a/sd/source/ui/view/drviews2.cxx
+++ b/sd/source/ui/view/drviews2.cxx
@@ -1104,6 +1104,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);
@@ -1130,6 +1134,8 @@ void DrawViewShell::FuTemporary(SfxRequest& rReq)
                         {
                             aGraphic = Graphic(mpDrawView->GetMarkedObjBitmapEx());
                         }
+                        // Restore online spelling
+                        GetDoc()->SetOnlineSpell(bOnlineSpell);
                     }
                     break;
                 }


More information about the Libreoffice-commits mailing list