officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu | 3 +++ sfx2/source/sidebar/SidebarController.cxx | 7 +++++++ 2 files changed, 10 insertions(+)
New commits: commit 169665b2d0c7dfbc2750c6bac841661bf4144a75 Author: Attila Szűcs <[email protected]> AuthorDate: Wed Jan 28 07:47:41 2026 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Thu Feb 26 16:22:36 2026 +0100 Chart: fix for theme sidebar experimental Looks like in linux desktop it is also needed .. Change-Id: I6af2b5f3880babe0b3cf9b1448ebfe575dc31028 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/198252 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Tomaž Vajngerl <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/200439 Reviewed-by: Caolán McNamara <[email protected]> diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu b/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu index 2cadc016b410..5bf52360e3dc 100644 --- a/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu +++ b/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu @@ -2136,6 +2136,9 @@ <prop oor:name="Title" oor:type="xs:string"> <value xml:lang="en-US">Theme</value> </prop> + <prop oor:name="IsExperimental" oor:type="xs:boolean"> + <value>true</value> + </prop> <prop oor:name="Id" oor:type="xs:string"> <value>ChartThemePanel</value> </prop> commit 985ab969fa83ad39475bc528277624bfb6c8332b Author: Attila Szűcs <[email protected]> AuthorDate: Wed Jan 21 13:18:37 2026 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Thu Feb 26 16:22:29 2026 +0100 Chart: font sidebar changed to experimental Chart styles is still experimental, so chart font sidebar changed experimental too. Change-Id: I3b8cec80e2ff21947a11dd9fb0de7f1672a95430 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197745 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Tomaž Vajngerl <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/200438 Reviewed-by: Caolán McNamara <[email protected]> diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx index d4ff65e1795f..a9dafced717c 100644 --- a/sfx2/source/sidebar/SidebarController.cxx +++ b/sfx2/source/sidebar/SidebarController.cxx @@ -62,6 +62,7 @@ #include <com/sun/star/ui/theUIElementFactoryManager.hpp> #include <com/sun/star/util/URL.hpp> #include <com/sun/star/rendering/XSpriteCanvas.hpp> +#include <officecfg/Office/Common.hxx> #include <bitmaps.hlst> @@ -799,6 +800,12 @@ void SidebarController::CreatePanels(std::u16string_view rDeckId, const Context& } else { + // Allow ChartTextPropertyPanel only in experimental mode + if (!officecfg::Office::Common::Misc::ExperimentalMode::get() + && rPanelContexDescriptor.msId == u"ChartTextPropertyPanel") + { + continue; + } auto aPanel = CreatePanel(rPanelContexDescriptor.msId, pDeck->GetPanelParentWindow(), rPanelContexDescriptor.mbIsInitiallyVisible,
