We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to develop a Slicer Custom App without a module panel.
I tried to add the following code to qTalk2ViewAppMainWindowPrivate::setupUi:
qTalk2ViewAppMainWindowPrivate::setupUi
this->PanelDockWidget->setVisible(false);
but the module panel is still visible.
I can hide it manually after the app is running using this Python code inside Home.py's setSlicerUIVisible function
setSlicerUIVisible
# Module panel modulePanelDockWidget = slicer.util.mainWindow().findChild('QDockWidget','PanelDockWidget') modulePanelDockWidget.setVisible(visible)
However, it is always shown on startup.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to develop a Slicer Custom App without a module panel.
I tried to add the following code to
qTalk2ViewAppMainWindowPrivate::setupUi
:but the module panel is still visible.
I can hide it manually after the app is running using this Python code inside Home.py's
setSlicerUIVisible
functionHowever, it is always shown on startup.
The text was updated successfully, but these errors were encountered: