sc/source/ui/drawfunc/fuins1.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit ee894c2de635616f7d63f1c5bcc8795db5f31638
Author:     Pranam Lashkari <lpra...@collabora.com>
AuthorDate: Mon May 3 04:20:00 2021 +0530
Commit:     Pranam Lashkari <lpra...@collabora.com>
CommitDate: Tue May 4 13:36:56 2021 +0200

    LOK: calc: allow image selection on insertion
    
    in calc online, image was not selected by default when inserted
    
    problems:
    it was inconsistent with writer and impress/draw
    it caused problem in cypress testing
    
    Change-Id: Ic18b7a918c485a1cd384694d72fbb0a598d26ba2
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115013
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>
    Reviewed-by: Pranam Lashkari <lpra...@collabora.com>

diff --git a/sc/source/ui/drawfunc/fuins1.cxx b/sc/source/ui/drawfunc/fuins1.cxx
index 11e2290d08ff..c171a156b856 100644
--- a/sc/source/ui/drawfunc/fuins1.cxx
+++ b/sc/source/ui/drawfunc/fuins1.cxx
@@ -44,6 +44,7 @@
 #include <scresid.hxx>
 #include <strings.hrc>
 #include <globstr.hrc>
+#include <comphelper/lok.hxx>
 
 #include <com/sun/star/ui/dialogs/XFilePickerControlAccess.hpp>
 #include <com/sun/star/ui/dialogs/ExtendedFilePickerElementIds.hpp>
@@ -197,7 +198,7 @@ static void lcl_InsertGraphic( const Graphic& rGraphic,
                                                  aAnchorType == 
SCA_CELL_RESIZE);
 
     //  don't select if from (dispatch) API, to allow subsequent cell 
operations
-    SdrInsertFlags nInsOptions = bApi ? SdrInsertFlags::DONTMARK : 
SdrInsertFlags::NONE;
+    SdrInsertFlags nInsOptions = (bApi && 
!comphelper::LibreOfficeKit::isActive()) ? SdrInsertFlags::DONTMARK : 
SdrInsertFlags::NONE;
     bool bSuccess = pView->InsertObjectAtView( pObj, *pPV, nInsOptions );
 
     // SetGraphicLink has to be used after inserting the object,
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to