Skip to content

Commit

Permalink
i_395: Removing this.
Browse files Browse the repository at this point in the history
  • Loading branch information
kkarakas committed Jan 25, 2024
1 parent b8e8ac2 commit f9a0c94
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/edu/csus/ecs/pc2/ui/ScoringPropertiesPane.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private void initialize() {
this.setLayout(new BorderLayout());
this.setPreferredSize(new Dimension(350, 200));
this.add(getPropertyListBox(), BorderLayout.CENTER);
this.lengthOfColumns = 167;
lengthOfColumns = 167;


}
Expand All @@ -73,8 +73,8 @@ private MCLB getPropertyListBox() {
HeapSorter sorter = new HeapSorter();
propertyListBox.setColumnSorter(1, sorter, 1);

propertyListBox.setColumnSize(0,this.lengthOfColumns);
propertyListBox.setColumnSize(1,this.lengthOfColumns);
propertyListBox.setColumnSize(0,lengthOfColumns);
propertyListBox.setColumnSize(1,lengthOfColumns);
propertyListBox.setResizable(false);

propertyListBox.addKeyListener(new java.awt.event.KeyAdapter() {
Expand Down Expand Up @@ -121,8 +121,8 @@ protected void refreshProperties() {
propertyListBox.addRow(objects);
}

propertyListBox.setColumnSize(0,this.lengthOfColumns);
propertyListBox.setColumnSize(1,this.lengthOfColumns);
propertyListBox.setColumnSize(0,lengthOfColumns);
propertyListBox.setColumnSize(1,lengthOfColumns);

enableButtons();
}
Expand Down

0 comments on commit f9a0c94

Please sign in to comment.