Normand Briere
2019-09-02 c23a2a128cbd5eb94b1a11e3b3a34676cf681135
GroupEditor.java
....@@ -766,10 +766,10 @@
766766 shadowZItem = menu.add(new MenuItem("Shadow Blue"));
767767 shadowZItem.addActionListener(this);
768768
769
- if (Globals.ADVANCED)
770
- {
771769 attributeItem = menu.add(new MenuItem("Attribute"));
772770 attributeItem.addActionListener(this);
771
+ if (Globals.ADVANCED)
772
+ {
773773 menu.add("-");
774774 linkerItem = menu.add(new MenuItem("Linker"));
775775 linkerItem.addActionListener(this);
....@@ -2722,11 +2722,11 @@
27222722 if (!group.selection.isEmpty())
27232723 {
27242724 Composite csg = new GroupLeaf();
2725
+ group(csg);
27252726 csg.count = 5;
27262727 Composite child = new cGroup("Branch");
27272728 csg.addChild(child);
27282729 child.addChild(csg);
2729
- group(csg);
27302730 }
27312731 } else
27322732 if (source == doubleItem)
....@@ -2734,6 +2734,7 @@
27342734 if (!group.selection.isEmpty())
27352735 {
27362736 Composite csg = new GroupLeaf("Fork");
2737
+ group(csg);
27372738 csg.count = 5;
27382739 Composite child = new cGroup("Branch A");
27392740 csg.addChild(child);
....@@ -2741,7 +2742,6 @@
27412742 child = new cGroup("Branch B");
27422743 csg.addChild(child);
27432744 child.addChild(csg);
2744
- group(csg);
27452745 }
27462746 } else
27472747 if (source == tripleItem)