Hello, I would like to hide the bar that shows the menus “File” “Edit” “View” etc …
I would like to hide that bar, how can I do it?
It’s technically possible, but we have removed the shortcut for it because people kept pressing it by accident and then kept asking how to get it back. If you hide it, all that functionality will be gone: there will be no magically appearing hamburger menu.
You can do it with Canvas Only Mode (Tab key toggle) by selecting Menu as the only item to be hidden in Canvas Only Mode:
Settings -> Configure Krita -> Canvas-only settings
This seems like a waste of Canvas Only Mode functionality but it does work.
Ok, I thought I could hide it and by pressing a key, bring the bar back.
The intention is to leave as much space as possible for the canvas but the “Canvas only” mode is too much, so I will have to set the “Canvas only” mode to get what I want.
Thanks for the help.
It’s possible to do it through a Plugin.
Quickly and Dirty, paste and execute in Scripter:
from krita import *
Krita.instance().activeWindow().qwindow().menuBar().setVisible(False)
This will hide the menu bar.
And:
from krita import *
Krita.instance().activeWindow().qwindow().menuBar().setVisible(True)
Will display it again.
It’s possible to create a small plugin on which you can affect a shortcut to display/hide menu bar.
Grum999
Ahh … wait … what ?? … woow! … it works!
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.