Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Fixed a bug that caused the plant view to not open when RELAP was
Browse files Browse the repository at this point in the history
selected in the MOOSE Model Builder.

Signed-off-by: Jordan Deyton <deytonjh@ornl.gov>
  • Loading branch information
Jordan Deyton committed Apr 20, 2015
1 parent bdac549 commit ee13d7e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -596,7 +596,7 @@ public void doSave(IProgressMonitor monitor) {
// If the selection is for RELAP-7, create a Plant View page
// if one doesn't already exist. If the selection is NOT for
// RELAP-7, delete any existing Plant View page.
String appStr = appsEntry.getValue();
String appStr = appsEntry.getValue().toLowerCase();
if ("relap".equals(appStr)) {
addPlantPage();
} else {
Expand Down

0 comments on commit ee13d7e

Please sign in to comment.