Skip to content

Commit

Permalink
Changed Gains fields within channels to match startTime and endTime l…
Browse files Browse the repository at this point in the history
…ayout for rest of gui
  • Loading branch information
QuincyCantu committed Aug 9, 2024
1 parent 6231f42 commit 142b762
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ private void addFields() {
}));
endTimeForm.setBorder(createEtchedBorder("End Time"));
add(endTimeForm, configureLayout(c -> {
c.gridx = 0; c.gridy = 3; c.weightx = 1;
c.gridx = 1; c.gridy = 2; c.weightx = 1;
}));
add(getRemoveButton(), configureLayout(c -> {
c.gridx = 0; c.gridy = 4; c.weightx = 1; c.gridwidth = GridBagConstraints.REMAINDER;
c.gridx = 0; c.gridy = 3; c.weightx = 1; c.gridwidth = GridBagConstraints.REMAINDER;
}));
}

Expand Down

0 comments on commit 142b762

Please sign in to comment.