svx/source/svdraw/svdedtv1.cxx |   13 +++++++++++++
 1 file changed, 13 insertions(+)

New commits:
commit f49ef63f8ab5c6c9740eff4fdc52e8776f84e473
Author:     Szymon Kłos <szymon.k...@collabora.com>
AuthorDate: Mon Nov 11 16:44:46 2019 +0100
Commit:     Szymon Kłos <szymon.k...@collabora.com>
CommitDate: Tue Nov 12 10:40:33 2019 +0100

    jsdialogs: send .uno:LineWidth updates
    
    Change-Id: I83856625d17910e5b9165c7a2ddae8b219650c8c
    Reviewed-on: https://gerrit.libreoffice.org/82455
    Tested-by: Jenkins
    Reviewed-by: Szymon Kłos <szymon.k...@collabora.com>
    (cherry picked from commit a3d08f4f8c3c958a33ce05398127c35dad81dc4b)
    Reviewed-on: https://gerrit.libreoffice.org/82485
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>

diff --git a/svx/source/svdraw/svdedtv1.cxx b/svx/source/svdraw/svdedtv1.cxx
index 53bf8eb1d519..3a325152d4dd 100644
--- a/svx/source/svdraw/svdedtv1.cxx
+++ b/svx/source/svdraw/svdedtv1.cxx
@@ -954,6 +954,19 @@ void SdrEditView::MergeAttrFromMarked(SfxItemSet& rAttr, 
bool bOnlyHardAttr) con
                         sPayload = ".uno:FillColor=" + sPayload;
                         break;
                     }
+
+                    case XATTR_LINEWIDTH:
+                    {
+                        const SfxPoolItem* pItem = 
rSet.GetItem(XATTR_LINEWIDTH);
+                        if (pItem)
+                        {
+                            sal_uInt32 nWidth = static_cast<const 
XLineWidthItem*>(pItem)->GetValue();
+                            sPayload = OUString::number(nWidth);
+
+                            sPayload = ".uno:LineWidth=" + sPayload;
+                        }
+                        break;
+                    }
                 }
 
                 
GetSfxViewShell()->libreOfficeKitViewCallback(LOK_CALLBACK_STATE_CHANGED,
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to