From 47cd0f0a3870d843cb758535316060d30f15c811 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Mon, 24 Jun 2019 19:10:13 -0400 Subject: [PATCH] Toolbox + DnD --- cFileSystemPane.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cFileSystemPane.java b/cFileSystemPane.java index a446d0f..cbc4ddf 100644 --- a/cFileSystemPane.java +++ b/cFileSystemPane.java @@ -14,7 +14,7 @@ //DragSourceListener, DropTargetListener { - cTree jTree = new cTree(null); + cTree jTree = new cTree(); iCallBack owner; JButton refreshButton; @@ -26,7 +26,7 @@ JCheckBox stripCB; JCheckBox genUVCB; - JCheckBox mergeAttributesCB; + cCheckBox mergeAttributesCB; cFileSystemPane(iCallBack o) { @@ -62,10 +62,10 @@ cGridBag fileCommsnds = new cGridBag(); - fileCommsnds.add(refreshButton = new JButton("Refresh")); //, aConstraints); - refreshButton.setToolTipText("Refresh entire tree"); fileCommsnds.add(loadButton = new JButton("Load")); //, aConstraints); loadButton.setToolTipText("Load selected file(s)"); + fileCommsnds.add(refreshButton = new JButton("Refresh")); //, aConstraints); + refreshButton.setToolTipText("Refresh entire tree"); refreshButton.addActionListener(this); loadButton.addActionListener(this); -- Gitblit v1.6.2