I am trying to figure this out, but have not reached a solution thus far.

Problem:
Qt Code:
  1. QMenuBar *menubar1 = addToolBar(tr("blah"));
  2. QMenuBar *menubar2 = addToolBar(tr("blah2"));
To copy to clipboard, switch view to plain text mode 

When it launches in a mainwindow it's like this:

[menubar1] | [menubar2]

I would like it to appear like this:

[menubar1]
[menubar2]

How is this accomplished?