mirror of
https://github.com/PAMGuard/PAMGuard.git
synced 2024-11-21 14:42:27 +00:00
update icon loader for choice mode
This commit is contained in:
parent
653dc584ed
commit
59f9dcb969
@ -76,13 +76,16 @@ public class PamRunModeDialog extends PamDialog {
|
||||
|
||||
|
||||
try {
|
||||
Image img = ImageIO.read(getClass().getResource(File.separator+PamIcon.getPAMGuardIconPath(PamIcon.NORMAL)));
|
||||
normalMode.setIcon(new ImageIcon(img));
|
||||
String file = File.separator+PamIcon.getPAMGuardIconPath(PamIcon.NORMAL);
|
||||
// icon =
|
||||
ImageIcon icon = new ImageIcon(ClassLoader.getSystemResource(file));
|
||||
// Image img = ImageIO.read(ClassLoader.getSystemResource(file));
|
||||
normalMode.setIcon(icon);
|
||||
normalMode.setHorizontalAlignment(SwingConstants.TRAILING);
|
||||
viewerMode.setIcon(new ImageIcon(img));
|
||||
viewerMode.setIcon(icon);
|
||||
viewerMode.setHorizontalAlignment(SwingConstants.TRAILING);
|
||||
|
||||
} catch (IOException e) {
|
||||
} catch (Exception e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ public class PamIcon {
|
||||
|
||||
|
||||
//the default is windows. Icon automatically resize on Windows.
|
||||
String path = "Resources/pamguardIcon.png";
|
||||
String path = "Resources\\pamguardIcon.png";
|
||||
|
||||
if (System.getProperty("os.name").equals("Linux") || System.getProperty("os.name").startsWith("Mac")) {
|
||||
switch (sizeFlag) {
|
||||
|
Loading…
Reference in New Issue
Block a user