How to hide the pull down menu bar

A forum for research and development of the user interface of FreeCAD
Forum rules
Be nice to others! Respect the FreeCAD code of conduct!
Post Reply
User avatar
mmiscool
Posts: 73
Joined: Sun Dec 18, 2016 9:07 pm
Location: Connecticut
Contact:

How to hide the pull down menu bar

Post by mmiscool »

Hello,

I attempted to find a setting or a code option to hide the menu bar that normally appears at the top of the free cad window that shows the standard drop down menus.

If any one has a bit of python code to make this thing disappear I would really appreciate it.

-Mike
My main project is https://autodrop3d.com
Effort on https://github.com/mmiscool/FC-Docker FreeCAD for cloud with browser based access has been discontinued in favor of focused development on https://github.com/xibyte/jsketcher
mario52
Veteran
Posts: 4696
Joined: Wed May 16, 2012 2:13 pm

Re: How to hide the pull down menu bar

Post by mario52 »

Maybe you need a special feature, go into Macros_recipes and Code_snippets, Topological_data_scripting.
My macros on Gist.github here complete macros Wiki and forum.
User avatar
mmiscool
Posts: 73
Joined: Sun Dec 18, 2016 9:07 pm
Location: Connecticut
Contact:

Re: How to hide the pull down menu bar

Post by mmiscool »

The drop down menus at the very top. Need to make them disappear.
untitled (3).png
untitled (3).png (116.64 KiB) Viewed 746 times
My main project is https://autodrop3d.com
Effort on https://github.com/mmiscool/FC-Docker FreeCAD for cloud with browser based access has been discontinued in favor of focused development on https://github.com/xibyte/jsketcher
User avatar
mmiscool
Posts: 73
Joined: Sun Dec 18, 2016 9:07 pm
Location: Connecticut
Contact:

Re: How to hide the pull down menu bar

Post by mmiscool »

Never mind. Figured it out.

Code: Select all

Gui.getMainWindow().menuBar().hide()
My main project is https://autodrop3d.com
Effort on https://github.com/mmiscool/FC-Docker FreeCAD for cloud with browser based access has been discontinued in favor of focused development on https://github.com/xibyte/jsketcher
Post Reply