This plugin adds the ability to hide/show the menu bar of the main window of Qt Creator.
cd $SOME_DIR
git clone https://code.qt.io/qt-creator/qt-creator.git
cd qt-creator
- check out the branch or tag that corresponds to your Qt Creator version. For example:
git checkout v4.5.0
if you are running Qt Creator 4.5.0 qmake
# you only need to run qmake in the qt-creator source tree, full build is not requiredcd $SOME_DIR
git clone https://github.com/ileonte/qt-creator-hide-menu.git
cd qt-creator-hide-menu
qmake IDE_SOURCE_TREE=${SOME_DIR}/qt-creator
make
The plugin is automatically placed in ${HOME}/.local/share/data/QtProject/qtcreator/plugins/${QTCREATOR_VERSION}
and it
should be automatically picked-up by Qt Creator (you will need to close existing instances and restart Qt Creator though).
When the plugin is activated a new option (Hide main menu
) will be added to the Window
menu. The default keyboard shortcut for activating this option is Ctrl+Meta+Alt+M
. You can change it via the configuration dialog
(Tools
-> Options
-> Environment
-> Keyboard
- search for menuhide
).