Skip to content

Commit

Permalink
Fix --systray
Browse files Browse the repository at this point in the history
  • Loading branch information
bugdone committed Feb 10, 2024
1 parent a7bd5ca commit 9892768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hsbox/java/SysTrayIcon.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void actionPerformed(ActionEvent e) {
});
popup.add(quitItem);

InputStream is = ClassLoader.getSystemClassLoader().getResourceAsStream("newui/public/images/hsbox.png");
InputStream is = ClassLoader.getSystemClassLoader().getResourceAsStream("public/oldui/img/hsbox.png");
BufferedImage image = ImageIO.read(is);
TrayIcon trayIcon = new TrayIcon(image, "HeadshotBox", popup);
trayIcon.setImageAutoSize(true);
Expand Down

0 comments on commit 9892768

Please sign in to comment.