From cbe4e90105d07d7d3fecabffaa01342403aa2ae3 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Thu, 19 Sep 2019 20:54:00 -0400 Subject: [PATCH] Better navigation. --- cFileSystemPane.java | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cFileSystemPane.java b/cFileSystemPane.java index 05e14ef..6abec53 100644 --- a/cFileSystemPane.java +++ b/cFileSystemPane.java @@ -61,24 +61,24 @@ GridBagConstraints aConstraints = new GridBagConstraints(0,0,1,1, 1.0,1.0, GridBagConstraints.EAST,GridBagConstraints.HORIZONTAL,new Insets(1,1,1,1), 0,0); - cGridBag fileCommsnds = new cGridBag(); + cGridBag fileCommands = new cGridBag(); - fileCommsnds.add(loadButton = new JButton("Load")); //, aConstraints); + fileCommands.add(loadButton = new JButton("Load")); //, aConstraints); loadButton.setToolTipText("Load selected file(s)"); loadButton.addActionListener(this); - fileCommsnds.add(refreshButton = new JButton("User")); //, aConstraints); + fileCommands.add(refreshButton = new JButton("User")); //, aConstraints); refreshButton.setToolTipText("Refresh user tree"); refreshButton.addActionListener(this); - fileCommsnds.add(rootButton = new JButton("Root")); //, aConstraints); + fileCommands.add(rootButton = new JButton("Root")); //, aConstraints); rootButton.setToolTipText("Refresh root tree"); rootButton.addActionListener(this); if (Globals.ADVANCED) { - fileCommsnds.add(printButton = new JButton("Print")); //, aConstraints); + fileCommands.add(printButton = new JButton("Print")); //, aConstraints); printButton.setToolTipText("Print file path in terminal"); printButton.addActionListener(this); - fileCommsnds.add(mergeAttributesCB = new cCheckBox("Merge", cJME.mergeAttributes)); //, aConstraints); + fileCommands.add(mergeAttributesCB = new cCheckBox("Merge", cJME.mergeAttributes)); //, aConstraints); mergeAttributesCB.setToolTipText("Merge common attributes (recommended)"); mergeAttributesCB.addItemListener(this); // replaceButton.addActionListener(this); @@ -98,8 +98,8 @@ // add(genUVCB = new cCheckBox("UV", cJME.genUV), aConstraints); // genUVCB.addItemListener(this); - add(fileCommsnds); - fileCommsnds.preferredHeight = 1; + add(fileCommands); + fileCommands.preferredHeight = 1; Return(); -- Gitblit v1.6.2