summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorPranam Lashkari <lpranam@collabora.com>2024-03-11 21:03:30 +0530
committerCaolán McNamara <caolan.mcnamara@collabora.com>2024-03-11 21:49:13 +0100
commita3f416e353031b9abb4ecfd3bf703e2238a5599f (patch)
tree267a8e792c40bcda206c6384b3456818250b6750 /svx
parent93d9d675e0f17fa18b0876d8f73bb9731a06186d (diff)
LOK: send LOK_CALLBACK_SHAPE_INNER_TEXT info on empty textbox initialization
Change-Id: I8bc003f89147c145ec4b1f9a91b6fe82da9f14be Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164662 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdedxv.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdedxv.cxx b/svx/source/svdraw/svdedxv.cxx
index 90e8e116e807..083f0f1e932b 100644
--- a/svx/source/svdraw/svdedxv.cxx
+++ b/svx/source/svdraw/svdedxv.cxx
@@ -2434,8 +2434,10 @@ bool SdrObjEditView::SetAttributes(const SfxItemSet& rSet, bool bReplaceAll)
mpTextEditOutlinerView->SetAttribs(rSet);
Outliner* pTEOutliner = mpTextEditOutlinerView->GetOutliner();
- if (mpModel && pTEOutliner && pTEOutliner->IsModified())
+ if (mpModel && pTEOutliner && pTEOutliner->IsModified()) {
mpModel->SetChanged();
+ SetInnerTextAreaForLOKit();
+ }
ImpMakeTextCursorAreaVisible();
}