summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--desktop/source/lib/init.cxx1
-rw-r--r--vcl/source/control/notebookbar.cxx3
2 files changed, 3 insertions, 1 deletions
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;