From 5e6a6f3319f0c4c687fe71952ac9ecc17792b83a Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Mon, 10 Jun 2019 20:37:18 -0400
Subject: [PATCH] Fix normal for mesh

---
 cFileSystemPane.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/cFileSystemPane.java b/cFileSystemPane.java
index a446d0f..da2f91f 100644
--- a/cFileSystemPane.java
+++ b/cFileSystemPane.java
@@ -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