Normand Briere
2019-06-26 89b25e7cc97f6fe221dfd41c4d463500f8a31bc1
cFileSystemPane.java
....@@ -14,7 +14,7 @@
1414 //DragSourceListener,
1515 DropTargetListener
1616 {
17
- cTree jTree = new cTree(null);
17
+ cTree jTree = new cTree();
1818 iCallBack owner;
1919
2020 JButton refreshButton;
....@@ -26,13 +26,13 @@
2626 JCheckBox stripCB;
2727 JCheckBox genUVCB;
2828
29
- JCheckBox mergeAttributesCB;
29
+ cCheckBox mergeAttributesCB;
3030
3131 cFileSystemPane(iCallBack o)
3232 {
3333 owner = o;
3434
35
- setName("File system");
35
+ setName("Files");
3636 //System.out.println("layout : " + getLayout());
3737 //setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
3838 //setLayout(new GridBagLayout());
....@@ -62,10 +62,10 @@
6262
6363 cGridBag fileCommsnds = new cGridBag();
6464
65
- fileCommsnds.add(refreshButton = new JButton("Refresh")); //, aConstraints);
66
- refreshButton.setToolTipText("Refresh entire tree");
6765 fileCommsnds.add(loadButton = new JButton("Load")); //, aConstraints);
6866 loadButton.setToolTipText("Load selected file(s)");
67
+ fileCommsnds.add(refreshButton = new JButton("Refresh")); //, aConstraints);
68
+ refreshButton.setToolTipText("Refresh entire tree");
6969
7070 refreshButton.addActionListener(this);
7171 loadButton.addActionListener(this);