Skip to content

Commit a486c61

Browse files
authored
Merge pull request #2404 from SCIInstitute/zzz-rc2
Zzz rc2
2 parents 7c92161 + 6ea8efd commit a486c61

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/Dataflow/Engine/Controller/NetworkEditorController.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,11 @@ NetworkEditorController::NetworkEditorController(ModuleFactoryHandle mf, ModuleS
7171
collabs_.algoFactory_ = af;
7272
collabs_.reexFactory_ = reex;
7373
collabs_.executorFactory_ = executorFactory;
74+
#ifndef BUILD_HEADLESS
7475
collabs_.executionManager_.reset(new ExecutionQueueManager);
76+
#else
77+
collabs_.executionManager_.reset(new SimpleExecutionManager);
78+
#endif
7579
collabs_.cmdFactory_ = cmdFactory;
7680
collabs_.eventCmdFactory_ = eventCmdFactory ? eventCmdFactory : makeShared<NullCommandFactory>();
7781
collabs_.serializationManager_ = nesm;

src/Interface/Modules/Render/ViewSceneControlsDock.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -798,6 +798,8 @@ CompositeLightControls::CompositeLightControls(ViewSceneDialog* parent, const st
798798
auto layout = new QHBoxLayout;
799799
setLayout(layout);
800800
layout->addWidget(tabs_);
801+
if (!lights_.empty())
802+
setMinimumSize(lights_[0]->minimumSize());
801803
}
802804

803805
QColor LightButtonUpdater::color() const

0 commit comments

Comments
 (0)