[fixes #699] preselect first AxialStage on Rocket-Open

This commit is contained in:
Daniel_M_Williams 2020-08-08 18:26:12 -04:00
parent b17d03138a
commit 4cd56c1616

View File

@ -282,6 +282,9 @@ public class BasicFrame extends JFrame {
tree = new ComponentTree(document);
tree.setSelectionModel(componentSelectionModel);
if( tree.isSelectionEmpty() ){
tree.setSelectionRow(1);
}
// Remove JTree key events that interfere with menu accelerators
InputMap im = SwingUtilities.getUIInputMap(tree, JComponent.WHEN_FOCUSED);