Skip to content

Commit 0d560be

Browse files
committed
Closes #1653 and closes #565
1 parent 471c135 commit 0d560be

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/Interface/Application/NetworkEditor.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,8 @@ ModuleProxyWidget* NetworkEditor::setupModuleWidget(ModuleWidget* module)
387387
connect(module, SIGNAL(disableWidgetDisabling()), this, SIGNAL(disableWidgetDisabling()));
388388
connect(module, SIGNAL(reenableWidgetDisabling()), this, SIGNAL(reenableWidgetDisabling()));
389389
connect(module, SIGNAL(showSubnetworkEditor(const QString&)), this, SLOT(showSubnetChild(const QString&)));
390-
connect(module, SIGNAL(showUIrequested(ModuleDialogGeneric*)), ctorParams_.dockManager_, SLOT(requestShow(ModuleDialogGeneric*)));
390+
//disable for IBBM
391+
//connect(module, SIGNAL(showUIrequested(ModuleDialogGeneric*)), ctorParams_.dockManager_, SLOT(requestShow(ModuleDialogGeneric*)));
391392

392393
if (module->hasDynamicPorts())
393394
{

src/Interface/Application/SCIRunMainWindow.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ SCIRunMainWindow::SCIRunMainWindow()
167167
scrollArea_->viewport()->setAutoFillBackground(true);
168168
scrollArea_->setStyleSheet(styleSheet());
169169

170-
setDockOptions(AnimatedDocks | AllowTabbedDocks | VerticalTabs);
170+
//setDockOptions(AnimatedDocks | AllowTabbedDocks);
171171

172172
connect(actionSave_As_, SIGNAL(triggered()), this, SLOT(saveNetworkAs()));
173173
connect(actionSave_, SIGNAL(triggered()), this, SLOT(saveNetwork()));
@@ -314,7 +314,6 @@ SCIRunMainWindow::SCIRunMainWindow()
314314
setupVersionButton();
315315

316316
WidgetStyleMixin::tabStyle(optionsTabWidget_);
317-
setMaximumHeight(QApplication::desktop()->screenGeometry().height());
318317
}
319318

320319
void SCIRunMainWindow::resizeEvent(QResizeEvent* event)
@@ -853,6 +852,8 @@ void SCIRunMainWindow::setActionIcons()
853852
actionToggleMetadataLayer_->setIcon(QPixmap(":/general/Resources/metadataLayer.png"));
854853
actionToggleTagLayer_->setIcon(QPixmap(":/general/Resources/tagLayer.png"));
855854
actionMakeSubnetwork_->setIcon(QPixmap(":/general/Resources/subnet3.png"));
855+
//IBBM disable
856+
actionMakeSubnetwork_->setDisabled(true);
856857
}
857858

858859
void SCIRunMainWindow::filterModuleNamesInTreeView(const QString& start)

0 commit comments

Comments
 (0)