Skip to content

Commit

Permalink
Use unboxed icons for buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
lenhard committed Feb 22, 2016
1 parent 913dea7 commit c8a6670
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void setValues(MetaData metaData) {
actionsList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
builder.add(actionsList).xyw(3, 5, 2);

deleteButton = new JButton(IconTheme.JabRefIcon.REMOVE.getSmallIcon());
deleteButton = new JButton(IconTheme.JabRefIcon.REMOVE_NOBOX.getSmallIcon());
deleteButton.addActionListener(new DeleteButtonListener());
builder.add(deleteButton).xy(3, 7);

Expand Down Expand Up @@ -107,7 +107,7 @@ private JPanel getSelectorPanel() {
formatters = new JComboBox(formatterNames.toArray());
builder.add(formatters).xy(3, 1);

addButton = new JButton(IconTheme.JabRefIcon.ADD.getSmallIcon());
addButton = new JButton(IconTheme.JabRefIcon.ADD_NOBOX.getSmallIcon());
addButton.addActionListener(new AddButtonListener());
builder.add(addButton).xy(5, 1);

Expand Down

0 comments on commit c8a6670

Please sign in to comment.