How to hide or delete the Help&Acknowledgement bar

In slicer,every module has a Help bar, as is shown in this pic.

I wonder hide or delete it ,is there any way ?
17

You can hide it using this command:

slicer.util.setModuleHelpSectionVisible(False)

Why would you like to hide it? To save space?

1 Like

Thank you!
Because I want to embed other module into my current module, but then there will be two same help columns,so I want to hide the embed module’s help bar.

Another problem is that the command will hide all modules’ Help bar.
Actually I just want to hide the embed module’s bar

image

I would not recommend doing this. Module GUI is not intended to be reused or duplicated and you may run into issues if you do it anyway. It is also not a good idea because module GUI always has input/output node selectors that you typically don’t need when you want to show some widgets embedded in another module’s GUI.

The proper solution is to build your module GUI from reusable widgets. These widgets can be instantiated any number of times, in any module, and have a number of properties to customize their appearance and behavior. A well-designed module builds its GUI from these reusable widgets (and maybe a few node selectors and buttons).

1 Like