Skip to content

Commit

Permalink
Merge pull request #230 from HydrologicEngineeringCenter/229-hms-clos…
Browse files Browse the repository at this point in the history
…es-when-ensemble-viewer-closes

229 hms closes when ensemble viewer closes
  • Loading branch information
dvdhoz authored Nov 3, 2023
2 parents c799add + 3a9129d commit ac11b09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FIRO_TSEnsembles/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jar {
targetCompatibility = JavaVersion.VERSION_1_8
}

version ="1.0"
version ="1.0-SNAPSHOT"
publishing {
publications {
mavenJava(MavenPublication) {
Expand Down
2 changes: 1 addition & 1 deletion ensemble-view/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jar {
}
}

version ="1.0"
version ="1.0.1"
publishing {
publications {
mavenJava(MavenPublication) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class EnsembleParentPanel extends JFrame{

public EnsembleParentPanel(JPanel topPanel, JTabbedPane tabPane) {
setTitle("Ensemble Viewer");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
setLayout(new BorderLayout());
setResizable(true);
add(topPanel, BorderLayout.NORTH);
Expand Down

0 comments on commit ac11b09

Please sign in to comment.