Hi,
Is it possible to hide the Help side panel? I tried with these macros
-Help V N Enter
and
-CommandHelp V N Enter
But, unlike Layer or DisplayProperties, this just calls Help with no apparent option to hide it…
Pablo
Hi,
Is it possible to hide the Help side panel? I tried with these macros
-Help V N Enter
and
-CommandHelp V N Enter
But, unlike Layer or DisplayProperties, this just calls Help with no apparent option to hide it…
Pablo
This small python script should act as a toggle for the context help panel…
import Rhino
id=Rhino.UI.PanelIds.ContextHelp
if Rhino.UI.Panels.IsPanelVisible(id):
Rhino.UI.Panels.ClosePanel(id)
else:
Rhino.UI.Panels.OpenPanel(id)
Great! Thank you
Pablo