sidebar: update chart panel on checkbox change

This fixes not working checkboxes for "title" and "subtitle" on mobile

Change-Id: I126bb020f669c8c4a34687f750a538513cd06eae
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122876
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123132
Tested-by: Jenkins
This commit is contained in:
Szymon Kłos 2021-09-30 10:42:57 +02:00
parent d25debd3c1
commit 3b72018b3c

View file

@ -628,6 +628,8 @@ IMPL_LINK(ChartElementsPanel, CheckBoxHdl, weld::Toggleable&, rCheckBox, void)
setGridVisible(mxModel, GridType::VERT_MINOR, bChecked);
else if (&rCheckBox == mxCBGridHorizontalMinor.get())
setGridVisible(mxModel, GridType::HOR_MINOR, bChecked);
updateData();
}
IMPL_LINK(ChartElementsPanel, EditHdl, weld::Entry&, rEdit, void)