Skip to content

Commit

Permalink
compromise
Browse files Browse the repository at this point in the history
  • Loading branch information
dennis97519 committed Mar 31, 2018
1 parent 0a06eb6 commit d5c278f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/me/deleteme/polyglot/gui/MainWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,10 @@ private void initMwsComponents() {
buttonPane = new JPanel();
formatPanel.add(buttonPane);
btnAdd = new JButton("+");
btnAdd.setPreferredSize(new Dimension(20,20));//so mac doesn't expand the button
btnAdd.setPreferredSize(new Dimension(40, 20));//so mac doesn't expand the button
btnAdd.addActionListener(this);
btnRmv = new JButton("-");
btnRmv.setPreferredSize(new Dimension(20,20));
btnRmv.setPreferredSize(new Dimension(40, 20));
btnRmv.setEnabled(false);
btnRmv.addActionListener(this);
btnEdit= new JButton("Edit...");
Expand Down

0 comments on commit d5c278f

Please sign in to comment.