Skip to content

Commit 1bfabd0

Browse files
committed
Small updates for various issues
1 parent ea27889 commit 1bfabd0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/Dataflow/Serialization/Network/Importer/NetworkIO.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ const std::map<std::string, std::string> LegacyNetworkIO::moduleRenameMap_ =
216216
{ "CalculateFieldData5", "CalculateFieldData" },
217217
{ "InterfaceWithCleaver", "InterfaceWithCleaver2" },
218218
{ "InterfaceWithNeuroFEMForward", "PlaceholderModule" },
219+
{ "ClipFieldByFunction2", "ClipFieldByFunction" },
219220
{ "ViewLeadSignals", "PlaceholderModule" },
220221
{ "ShowMatrix", "PlaceholderModule" },
221222
{ "ConvertFieldDataFromIndicesToTensors", "PlaceholderModule" },

src/Interface/Application/ModuleWidget.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1499,9 +1499,12 @@ void ModuleWidget::changeExecuteButtonToPlay()
14991499

15001500
void ModuleWidget::stopButtonPushed()
15011501
{
1502+
//TODO: doesn't quite work yet
1503+
#if 0
15021504
auto stoppable = boost::dynamic_pointer_cast<SCIRun::Core::Thread::Stoppable>(theModule_);
15031505
if (stoppable)
15041506
stoppable->sendStopRequest();
1507+
#endif
15051508
}
15061509

15071510
void ModuleWidget::movePortWidgets(int oldIndex, int newIndex)

0 commit comments

Comments
 (0)