From ee13d7e31665bc7c825a439d3377f1804b8e74d8 Mon Sep 17 00:00:00 2001 From: Jordan Deyton Date: Mon, 20 Apr 2015 13:29:25 -0400 Subject: [PATCH] Fixed a bug that caused the plant view to not open when RELAP was selected in the MOOSE Model Builder. Signed-off-by: Jordan Deyton --- .../org/eclipse/ice/client/widgets/moose/MOOSEFormEditor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org.eclipse.ice.client.widgets.moose/src/org/eclipse/ice/client/widgets/moose/MOOSEFormEditor.java b/src/org.eclipse.ice.client.widgets.moose/src/org/eclipse/ice/client/widgets/moose/MOOSEFormEditor.java index b31e79071..fbb9f2151 100644 --- a/src/org.eclipse.ice.client.widgets.moose/src/org/eclipse/ice/client/widgets/moose/MOOSEFormEditor.java +++ b/src/org.eclipse.ice.client.widgets.moose/src/org/eclipse/ice/client/widgets/moose/MOOSEFormEditor.java @@ -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 {