How to restore the file menu in Qt Creator
-
Hi,
I accidentally closed the file menu in Qt Creator. How can I show it again?
-
Hi,
I accidentally closed the file menu in Qt Creator. How can I show it again?
You can 3 options to do so, as described at https://bugreports.qt.io/browse/QTCREATORBUG-30114
- Press
Ctrl+Alt+M
which is the shortcut to hide/show the application menu - Trigger the action via the
t
locator filter. You can doCtrl+K
and thent
or directly viaCtrl+Shift+K
. Then type show menu - Remove the
MenubarVisible=false
fromQtCreator.ini
file. See https://doc.qt.io/qtcreator/creator-how-to-find-settings-files.html
- Press
-
8 8Observer8 has marked this topic as solved on
-
You can 3 options to do so, as described at https://bugreports.qt.io/browse/QTCREATORBUG-30114
- Press
Ctrl+Alt+M
which is the shortcut to hide/show the application menu - Trigger the action via the
t
locator filter. You can doCtrl+K
and thent
or directly viaCtrl+Shift+K
. Then type show menu - Remove the
MenubarVisible=false
fromQtCreator.ini
file. See https://doc.qt.io/qtcreator/creator-how-to-find-settings-files.html
@cristian-adam thank you very much!
- Press