.. | .. |
---|
590 | 590 | //minButton.setToolTipText("Minimize window"); |
---|
591 | 591 | //minButton.addActionListener(this); |
---|
592 | 592 | |
---|
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 | + } |
---|
596 | 599 | |
---|
597 | 600 | oe.toolbarPanel.add(fullButton = GetButton("icons/fullscreen.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
598 | 601 | fullButton.setToolTipText("Full-screen window"); |
---|
.. | .. |
---|
1468 | 1471 | menu.add(animationItem = new CheckboxMenuItem("Animation...")); |
---|
1469 | 1472 | animationItem.addItemListener(this); |
---|
1470 | 1473 | animationItem.setState(Globals.ANIMATION); |
---|
| 1474 | + |
---|
| 1475 | + menu.add(archiveItem = new MenuItem("Archive3D...")); |
---|
| 1476 | + archiveItem.addActionListener(this); |
---|
1471 | 1477 | |
---|
1472 | 1478 | menu.add("-"); |
---|
1473 | 1479 | parseverticesItem = menu.add(new MenuItem("Multiplicity")); |
---|
.. | .. |
---|
4728 | 4734 | void refreshContents(boolean cp) |
---|
4729 | 4735 | { |
---|
4730 | 4736 | if (objectPanel.getSelectedIndex() == objectPanel.indexOfTab("Info")) |
---|
4731 | | - if (!Globals.MOUSEDRAGGED) // && !Globals.TIMERRUNNING) |
---|
| 4737 | + if (!Globals.MOUSEDRAGGED && group.selection != null) // && !Globals.TIMERRUNNING) |
---|
4732 | 4738 | { |
---|
4733 | 4739 | objEditor.ClearInfo(); // .GetMaterial()); |
---|
4734 | 4740 | |
---|