Search code examples
c++qtqt-creatorqt-designerqtgui

Qt: How to remove the default main toolbar from the mainwindow?


I am new to Qt, and I can't figure out why there is a draggable object in my main window. It starts at the top of the screen in its exapanded form.

enter image description here

And then I can drag it and it shrinks into a square.

enter image description here


Solution

  • You need to remove the main toolbar from either QtDesigner as can be seen below or from the code manually:

    enter image description here

    Then, you will need to rerun qmake for the changes to take effect as the ui_mainwindow.h header file needs to be regenerated from the updated mainwindow.ui description file.

    enter image description here