.. | .. |
---|
61 | 61 | GridBagConstraints aConstraints = new GridBagConstraints(0,0,1,1, 1.0,1.0, |
---|
62 | 62 | GridBagConstraints.EAST,GridBagConstraints.HORIZONTAL,new Insets(1,1,1,1), 0,0); |
---|
63 | 63 | |
---|
64 | | - cGridBag fileCommsnds = new cGridBag(); |
---|
| 64 | + cGridBag fileCommands = new cGridBag(); |
---|
65 | 65 | |
---|
66 | | - fileCommsnds.add(loadButton = new JButton("Load")); //, aConstraints); |
---|
| 66 | + fileCommands.add(loadButton = new JButton("Load")); //, aConstraints); |
---|
67 | 67 | loadButton.setToolTipText("Load selected file(s)"); |
---|
68 | 68 | loadButton.addActionListener(this); |
---|
69 | | - fileCommsnds.add(refreshButton = new JButton("User")); //, aConstraints); |
---|
| 69 | + fileCommands.add(refreshButton = new JButton("User")); //, aConstraints); |
---|
70 | 70 | refreshButton.setToolTipText("Refresh user tree"); |
---|
71 | 71 | refreshButton.addActionListener(this); |
---|
72 | | - fileCommsnds.add(rootButton = new JButton("Root")); //, aConstraints); |
---|
| 72 | + fileCommands.add(rootButton = new JButton("Root")); //, aConstraints); |
---|
73 | 73 | rootButton.setToolTipText("Refresh root tree"); |
---|
74 | 74 | rootButton.addActionListener(this); |
---|
75 | 75 | |
---|
76 | 76 | if (Globals.ADVANCED) |
---|
77 | 77 | { |
---|
78 | | - fileCommsnds.add(printButton = new JButton("Print")); //, aConstraints); |
---|
| 78 | + fileCommands.add(printButton = new JButton("Print")); //, aConstraints); |
---|
79 | 79 | printButton.setToolTipText("Print file path in terminal"); |
---|
80 | 80 | printButton.addActionListener(this); |
---|
81 | | - fileCommsnds.add(mergeAttributesCB = new cCheckBox("Merge", cJME.mergeAttributes)); //, aConstraints); |
---|
| 81 | + fileCommands.add(mergeAttributesCB = new cCheckBox("Merge", cJME.mergeAttributes)); //, aConstraints); |
---|
82 | 82 | mergeAttributesCB.setToolTipText("Merge common attributes (recommended)"); |
---|
83 | 83 | mergeAttributesCB.addItemListener(this); |
---|
84 | 84 | // replaceButton.addActionListener(this); |
---|
.. | .. |
---|
98 | 98 | // add(genUVCB = new cCheckBox("UV", cJME.genUV), aConstraints); |
---|
99 | 99 | // genUVCB.addItemListener(this); |
---|
100 | 100 | |
---|
101 | | - add(fileCommsnds); |
---|
102 | | - fileCommsnds.preferredHeight = 1; |
---|
| 101 | + add(fileCommands); |
---|
| 102 | + fileCommands.preferredHeight = 1; |
---|
103 | 103 | |
---|
104 | 104 | Return(); |
---|
105 | 105 | |
---|