|
@@ -76,7 +76,7 @@ public class ArtistPane extends JPanel {
|
|
|
buttonPane.setOpaque(false);
|
|
buttonPane.setOpaque(false);
|
|
|
JLabel addArtist = new JLabel();
|
|
JLabel addArtist = new JLabel();
|
|
|
addArtist.setBorder(BorderFactory.createEmptyBorder(0, 0, 0, 20));
|
|
addArtist.setBorder(BorderFactory.createEmptyBorder(0, 0, 0, 20));
|
|
|
- addArtist.setIcon(new ImageIcon("E:\\Bibliotheek\\Documenten\\Workspaces\\FestivalPlanner\\res\\add.png"));
|
|
|
|
|
|
|
+ addArtist.setIcon(new ImageIcon(this.getClass().getResource("/add.png")));
|
|
|
addArtist.setForeground(new Color(51,51,51));
|
|
addArtist.setForeground(new Color(51,51,51));
|
|
|
addArtist.addMouseListener(new MouseListener() {
|
|
addArtist.addMouseListener(new MouseListener() {
|
|
|
@Override
|
|
@Override
|
|
@@ -107,7 +107,7 @@ public class ArtistPane extends JPanel {
|
|
|
buttonPane.add(addArtist);
|
|
buttonPane.add(addArtist);
|
|
|
|
|
|
|
|
JLabel removeButton = new JLabel();
|
|
JLabel removeButton = new JLabel();
|
|
|
- removeButton.setIcon(new ImageIcon("E:\\Bibliotheek\\Documenten\\Workspaces\\FestivalPlanner\\res\\remove.png"));
|
|
|
|
|
|
|
+ removeButton.setIcon(new ImageIcon(getClass().getResource("/remove.png")));
|
|
|
removeButton.setForeground(new Color(51,51,51));
|
|
removeButton.setForeground(new Color(51,51,51));
|
|
|
removeButton.addMouseListener(new MouseListener() {
|
|
removeButton.addMouseListener(new MouseListener() {
|
|
|
@Override
|
|
@Override
|