Add more toolbar
Solved
General and Desktop
-
Hi everyone,
I would like to add a toolbar above the other, is it possible?
Like this:
link imageIf I write in mainWindow:
addToolBar(m_ToolBar1); addToolBar(m_ToolBar2);
It gives me the Toolbar next to each other.
-
addToolBar(m_ToolBar1); addToolBarBreak(...); // assuming this is a QMainWindow addToolBar(m_ToolBar2);
-
It works perfectly, thanks a lot.