diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/ModeFrame.java b/trunk/src/com/jpexs/decompiler/flash/gui/ModeFrame.java index 0ca712944..d41b99e38 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/ModeFrame.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/ModeFrame.java @@ -45,13 +45,13 @@ public class ModeFrame extends JFrame implements ActionListener { setSize(350, 200); openButton.addActionListener(this); openButton.setActionCommand("OPEN"); - openButton.setIcon(View.getIcon("open24")); + openButton.setIcon(View.getIcon("open32")); proxyButton.addActionListener(this); proxyButton.setActionCommand("PROXY"); - proxyButton.setIcon(View.getIcon("proxy24")); + proxyButton.setIcon(View.getIcon("proxy32")); exitButton.addActionListener(this); exitButton.setActionCommand("EXIT"); - exitButton.setIcon(View.getIcon("exit24")); + exitButton.setIcon(View.getIcon("exit32")); setResizable(false); Container cont = getContentPane(); cont.setLayout(new GridLayout(4, 1)); diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/cancel16.png b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/cancel16.png index c149c2bc0..33c876b23 100644 Binary files a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/cancel16.png and b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/cancel16.png differ diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/exit32.png b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/exit32.png new file mode 100644 index 000000000..a65ed5884 Binary files /dev/null and b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/exit32.png differ diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/open24.png b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/open24.png deleted file mode 100644 index 15b696629..000000000 Binary files a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/open24.png and /dev/null differ diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/open32.png b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/open32.png new file mode 100644 index 000000000..b20277a8f Binary files /dev/null and b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/open32.png differ diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy16.png b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy16.png index 4d1b247d0..aee9c97f8 100644 Binary files a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy16.png and b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy16.png differ diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy24.png b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy24.png deleted file mode 100644 index 105db48f3..000000000 Binary files a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy24.png and /dev/null differ diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy32.png b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy32.png index 2e3e55fce..7b800f1b2 100644 Binary files a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy32.png and b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy32.png differ diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy48.png b/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy48.png deleted file mode 100644 index d78cfe4ee..000000000 Binary files a/trunk/src/com/jpexs/decompiler/flash/gui/graphics/proxy48.png and /dev/null differ diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/proxy/ProxyFrame.java b/trunk/src/com/jpexs/decompiler/flash/gui/proxy/ProxyFrame.java index 3503d33cf..ea0bea0f3 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/proxy/ProxyFrame.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/proxy/ProxyFrame.java @@ -154,10 +154,8 @@ public class ProxyFrame extends JFrame implements ActionListener, CatchedListene } }); java.util.List images = new ArrayList(); - images.add(View.loadImage("proxy16")); - images.add(View.loadImage("proxy24")); - images.add(View.loadImage("proxy32")); - images.add(View.loadImage("proxy48")); + images.add(View.loadImage("proxy16")); + images.add(View.loadImage("proxy32")); setIconImages(images); }