summaryrefslogtreecommitdiffstats
path: root/chart2/source
diff options
context:
space:
mode:
authorSzymon Kłos <szymon.klos@collabora.com>2021-09-30 10:42:57 +0200
committerSzymon Kłos <szymon.klos@collabora.com>2021-10-06 14:14:15 +0200
commit3b72018b3c3056d422c3474bca30b1a157ae8dc0 (patch)
treed46adc69aaab0eb04794e95b33b91f831dc7f185 /chart2/source
parentDeduplicate reference marks and cell auto fill messages (diff)
downloadcore-3b72018b3c3056d422c3474bca30b1a157ae8dc0.tar.gz
core-3b72018b3c3056d422c3474bca30b1a157ae8dc0.zip
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
Diffstat (limited to 'chart2/source')
-rw-r--r--chart2/source/controller/sidebar/ChartElementsPanel.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/chart2/source/controller/sidebar/ChartElementsPanel.cxx b/chart2/source/controller/sidebar/ChartElementsPanel.cxx
index e24cde11ffb1..95f6f09ac00c 100644
--- a/chart2/source/controller/sidebar/ChartElementsPanel.cxx
+++ b/chart2/source/controller/sidebar/ChartElementsPanel.cxx
@@ -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)