Normand Briere
2019-09-20 cbe4e90105d07d7d3fecabffaa01342403aa2ae3
cFileSystemPane.java
....@@ -61,24 +61,24 @@
6161 GridBagConstraints aConstraints = new GridBagConstraints(0,0,1,1, 1.0,1.0,
6262 GridBagConstraints.EAST,GridBagConstraints.HORIZONTAL,new Insets(1,1,1,1), 0,0);
6363
64
- cGridBag fileCommsnds = new cGridBag();
64
+ cGridBag fileCommands = new cGridBag();
6565
66
- fileCommsnds.add(loadButton = new JButton("Load")); //, aConstraints);
66
+ fileCommands.add(loadButton = new JButton("Load")); //, aConstraints);
6767 loadButton.setToolTipText("Load selected file(s)");
6868 loadButton.addActionListener(this);
69
- fileCommsnds.add(refreshButton = new JButton("User")); //, aConstraints);
69
+ fileCommands.add(refreshButton = new JButton("User")); //, aConstraints);
7070 refreshButton.setToolTipText("Refresh user tree");
7171 refreshButton.addActionListener(this);
72
- fileCommsnds.add(rootButton = new JButton("Root")); //, aConstraints);
72
+ fileCommands.add(rootButton = new JButton("Root")); //, aConstraints);
7373 rootButton.setToolTipText("Refresh root tree");
7474 rootButton.addActionListener(this);
7575
7676 if (Globals.ADVANCED)
7777 {
78
- fileCommsnds.add(printButton = new JButton("Print")); //, aConstraints);
78
+ fileCommands.add(printButton = new JButton("Print")); //, aConstraints);
7979 printButton.setToolTipText("Print file path in terminal");
8080 printButton.addActionListener(this);
81
- fileCommsnds.add(mergeAttributesCB = new cCheckBox("Merge", cJME.mergeAttributes)); //, aConstraints);
81
+ fileCommands.add(mergeAttributesCB = new cCheckBox("Merge", cJME.mergeAttributes)); //, aConstraints);
8282 mergeAttributesCB.setToolTipText("Merge common attributes (recommended)");
8383 mergeAttributesCB.addItemListener(this);
8484 // replaceButton.addActionListener(this);
....@@ -98,8 +98,8 @@
9898 // add(genUVCB = new cCheckBox("UV", cJME.genUV), aConstraints);
9999 // genUVCB.addItemListener(this);
100100
101
- add(fileCommsnds);
102
- fileCommsnds.preferredHeight = 1;
101
+ add(fileCommands);
102
+ fileCommands.preferredHeight = 1;
103103
104104 Return();
105105