Merge pull request #1872 from SiboVG/issue-1871

[#1871] Don't highlight sustainer stage in 3D view at startup
This commit is contained in:
Sibo Van Gool 2022-12-05 19:48:12 +01:00 committed by GitHub
commit 0e84713825
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -286,6 +286,7 @@ public class BasicFrame extends JFrame {
tree.setSelectionRow(1);
// Don't select children components at startup (so override the default behavior with this new selection)
rocketpanel.getFigure().setSelection(new RocketComponent[] { topStage });
rocketpanel.getFigure3d().setSelection(new RocketComponent[] { topStage });
log.debug("... Setting Initial Selection: " + tree.getSelectionPath() );
}
}