Skip to content

Commit ac4fb0b

Browse files
committed
Closes #1493
1 parent 1a75a30 commit ac4fb0b

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/Interface/Application/ModuleWidget.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1311,6 +1311,10 @@ void ModuleWidget::handleDialogFatalError(const QString& message)
13111311
fullWidgetDisplay_->getOptionsButton()->setText("");
13121312
fullWidgetDisplay_->getOptionsButton()->setIcon(style()->standardIcon(QStyle::SP_BrowserReload));
13131313
connect(fullWidgetDisplay_->getOptionsButton(), SIGNAL(clicked()), this, SLOT(replaceMe()));
1314+
1315+
auto id = QString::fromStdString(getModuleId());
1316+
QMessageBox::critical(nullptr, "Critical module error: " + id,
1317+
"Please note the broken module, " + id + ", and replace it with a new instance. This is most likely due to this known bug: https://github.com/SCIInstitute/SCIRun/issues/881");
13141318
}
13151319

13161320
void ModuleWidget::highlightPorts()

src/Interface/Application/SCIRunMainWindow.ui

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@
164164
<addaction name="actionKeyboardShortcuts_"/>
165165
<addaction name="helpActionNewUserWizard_"/>
166166
<addaction name="menuNew_Features"/>
167+
<addaction name="actionReportIssue_"/>
167168
</widget>
168169
<widget class="QMenu" name="menuWindow">
169170
<property name="title">
@@ -1085,6 +1086,11 @@
10851086
<string>Execute</string>
10861087
</property>
10871088
</action>
1089+
<action name="actionReportIssue_">
1090+
<property name="text">
1091+
<string>Report Issue...</string>
1092+
</property>
1093+
</action>
10881094
</widget>
10891095
<resources/>
10901096
<connections>

0 commit comments

Comments
 (0)