From 94958cc478d9f97b33bc0da654b7bd19c3c99eea Mon Sep 17 00:00:00 2001 From: mert Date: Thu, 25 Feb 2021 11:41:24 +0300 Subject: Init Notebookbar for Online Draw Signed-off-by: mert Change-Id: I85a25820d3968070dd8a05156b4bb4a1ebe59f99 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111517 --- desktop/source/lib/init.cxx | 1 + vcl/source/control/notebookbar.cxx | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 2b56bdb2112d..5701f5965ce2 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -6382,6 +6382,7 @@ static int lo_initialize(LibreOfficeKit* pThis, const char* pAppPath, const char activateNotebookbar(u"Writer"); activateNotebookbar(u"Calc"); activateNotebookbar(u"Impress"); + activateNotebookbar(u"Draw"); } return bInitialized; diff --git a/vcl/source/control/notebookbar.cxx b/vcl/source/control/notebookbar.cxx index 8506ce965273..f7b58dfc3416 100644 --- a/vcl/source/control/notebookbar.cxx +++ b/vcl/source/control/notebookbar.cxx @@ -75,7 +75,8 @@ NotebookBar::NotebookBar(Window* pParent, const OString& rID, const OUString& rU bool bIsWelded = comphelper::LibreOfficeKit::isActive() && (rUIXMLDescription == "modules/swriter/ui/notebookbar.ui" || rUIXMLDescription == "modules/scalc/ui/notebookbar.ui" - || rUIXMLDescription == "modules/simpress/ui/notebookbar.ui"); + || rUIXMLDescription == "modules/simpress/ui/notebookbar.ui" + || rUIXMLDescription == "modules/sdraw/ui/notebookbar.ui"); if (bIsWelded) { m_bIsWelded = true; -- cgit