chart2/source/controller/sidebar/ChartElementsPanel.cxx | 2 ++ desktop/source/lib/init.cxx | 2 ++ 2 files changed, 4 insertions(+)
New commits: commit 3b72018b3c3056d422c3474bca30b1a157ae8dc0 Author: Szymon Kłos <[email protected]> AuthorDate: Thu Sep 30 10:42:57 2021 +0200 Commit: Szymon Kłos <[email protected]> CommitDate: Wed Oct 6 14:14:15 2021 +0200 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 <[email protected]> Reviewed-by: Szymon Kłos <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123132 Tested-by: Jenkins 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) commit d25debd3c1a19c52c9d4aa4da4ce8d36de45afdb Author: Szymon Kłos <[email protected]> AuthorDate: Fri Apr 23 15:15:00 2021 +0200 Commit: Szymon Kłos <[email protected]> CommitDate: Wed Oct 6 14:14:05 2021 +0200 Deduplicate reference marks and cell auto fill messages We use only the last value Change-Id: If3536b5b4bc67755cb7bb73850a590d37675e6a4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114547 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Jan Holesovsky <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122106 Reviewed-by: Szymon Kłos <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123131 Tested-by: Jenkins diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 15c0eb281a38..d74e253b2298 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -1536,6 +1536,8 @@ void CallbackFlushHandler::queue(const int type, const char* data) case LOK_CALLBACK_WINDOW: case LOK_CALLBACK_CALC_FUNCTION_LIST: case LOK_CALLBACK_INVALIDATE_SHEET_GEOMETRY: + case LOK_CALLBACK_REFERENCE_MARKS: + case LOK_CALLBACK_CELL_AUTO_FILL_AREA: { const auto& pos = std::find(m_queue1.rbegin(), m_queue1.rend(), type); auto pos2 = toQueue2(pos);
