Normand Briere
2019-07-01 6600d22461ccc1cb602f238a9ffa83cf07dd830e
GroupEditor.java
....@@ -590,9 +590,12 @@
590590 //minButton.setToolTipText("Minimize window");
591591 //minButton.addActionListener(this);
592592
593
- oe.toolbarPanel.add(maxButton = GetButton("icons/add-128.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
594
- maxButton.setToolTipText("Maximize window");
595
- maxButton.addActionListener(this);
593
+ if (Globals.ADVANCED)
594
+ {
595
+ oe.toolbarPanel.add(maxButton = GetButton("icons/add-128.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
596
+ maxButton.setToolTipText("Maximize window");
597
+ maxButton.addActionListener(this);
598
+ }
596599
597600 oe.toolbarPanel.add(fullButton = GetButton("icons/fullscreen.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
598601 fullButton.setToolTipText("Full-screen window");
....@@ -1468,6 +1471,9 @@
14681471 menu.add(animationItem = new CheckboxMenuItem("Animation..."));
14691472 animationItem.addItemListener(this);
14701473 animationItem.setState(Globals.ANIMATION);
1474
+
1475
+ menu.add(archiveItem = new MenuItem("Archive3D..."));
1476
+ archiveItem.addActionListener(this);
14711477
14721478 menu.add("-");
14731479 parseverticesItem = menu.add(new MenuItem("Multiplicity"));
....@@ -4728,7 +4734,7 @@
47284734 void refreshContents(boolean cp)
47294735 {
47304736 if (objectPanel.getSelectedIndex() == objectPanel.indexOfTab("Info"))
4731
- if (!Globals.MOUSEDRAGGED) // && !Globals.TIMERRUNNING)
4737
+ if (!Globals.MOUSEDRAGGED && group.selection != null) // && !Globals.TIMERRUNNING)
47324738 {
47334739 objEditor.ClearInfo(); // .GetMaterial());
47344740