Skip to content

Commit

Permalink
Changed display layout for LogStats log file name
Browse files Browse the repository at this point in the history
  • Loading branch information
vimsh committed Aug 1, 2020
1 parent 32f93d8 commit 2d21641
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified MafScaling.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions src/com/vgi/mafscaling/LogStats.java
Original file line number Diff line number Diff line change
Expand Up @@ -256,14 +256,14 @@ private void createControlPanel(JPanel dataPanel) {
addButton(0, 11, 2, "GO", "go");

labelFileName = new JLabel("");
labelFileName.setHorizontalAlignment(SwingConstants.CENTER);
labelFileName.setHorizontalAlignment(SwingConstants.LEFT);
GridBagConstraints gbc_label = new GridBagConstraints();
gbc_label.anchor = GridBagConstraints.WEST;
gbc_label.fill = GridBagConstraints.HORIZONTAL;
gbc_label.insets = insets3;
gbc_label.gridx = 0;
gbc_label.gridx = 3;
gbc_label.gridy = 2;
gbc_label.gridwidth = gbl_cntlPanel.columnWidths.length;
gbc_label.gridwidth = gbl_cntlPanel.columnWidths.length - gbc_label.gridx;
cntlPanel.add(labelFileName, gbc_label);
}
catch (Exception e) {
Expand Down
2 changes: 1 addition & 1 deletion src/com/vgi/mafscaling/MafScaling.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

public class MafScaling {
private static final Logger logger = Logger.getLogger(MafScaling.class);
private static final String Title = "MAF Scaling - v2.5.2";
private static final String Title = "MAF Scaling - v2.5.3";
private static final String OLTabName = "<html>Open Loop</html>";
private static final String CLTabName = "<html>Closed Loop</html>";
private static final String MRTabName = "<html>MAF Rescale</html>";
Expand Down

0 comments on commit 2d21641

Please sign in to comment.