|
@@ -255,12 +255,12 @@ public class Controls extends JPanel implements Observer, Serializable
|
|
|
|
|
|
try
|
|
|
{
|
|
|
- this.lightGridImg = ImageIO.read(new File("src/main/resources/invertedgrid.png"));
|
|
|
+ this.lightGridImg = ImageIO.read(new File("src/main/resources/lightgrid.png"));
|
|
|
} catch(IOException e) {}
|
|
|
|
|
|
try
|
|
|
{
|
|
|
- this.lightListImg = ImageIO.read(new File("src/main/resources/invertedlist.png"));
|
|
|
+ this.lightListImg = ImageIO.read(new File("src/main/resources/lightlist.png"));
|
|
|
} catch(IOException e) {}
|
|
|
|
|
|
try
|
|
@@ -282,10 +282,10 @@ public class Controls extends JPanel implements Observer, Serializable
|
|
|
this.listIcon = new ImageIcon(listImg);
|
|
|
this.folderIcon = new ImageIcon(folderImg);
|
|
|
|
|
|
- this.grid = new JRadioButton(lightGridIcon, true);
|
|
|
+ this.grid = new JRadioButton(gridIcon, true);
|
|
|
grid.addActionListener(customlistener);
|
|
|
|
|
|
- this.list = new JRadioButton(listIcon, false);
|
|
|
+ this.list = new JRadioButton(lightListIcon, false);
|
|
|
list.addActionListener(customlistener);
|
|
|
|
|
|
this.layouts = new ButtonGroup();
|