client: Remove images that were used for presence switching (#1269)

* client: Remove images that were used for presence switching

* Update ClientUI.java

* Update FeedPanel.java

* Update Notifier.java
This commit is contained in:
Owain van Brakel
2019-08-08 11:18:24 +02:00
committed by Kyleeld
parent 686d32491d
commit b06ea47011
4 changed files with 3 additions and 3 deletions

View File

@@ -326,7 +326,7 @@ public class Notifier
{
if (OSType.getOSType() == OSType.Linux && !Files.exists(notifyIconPath))
{
try (InputStream stream = Notifier.class.getResourceAsStream("/runelite.png"))
try (InputStream stream = Notifier.class.getResourceAsStream("/runeliteplus.png"))
{
Files.copy(stream, notifyIconPath);
}

View File

@@ -116,8 +116,8 @@ public class ClientUI
private static final int CLIENT_WELL_HIDDEN_MARGIN = 160;
private static final int CLIENT_WELL_HIDDEN_MARGIN_TOP = 10;
public static boolean allowInput = false;
public static String currentPresenceName = "RuneLite";
public static final BufferedImage ICON = ImageUtil.getResourceStreamFromClass(ClientUI.class, "/runelite.png");
public static String currentPresenceName = "RuneLitePlus";
public static final BufferedImage ICON = ImageUtil.getResourceStreamFromClass(ClientUI.class, "/runeliteplus.png");
@Getter
private TrayIcon trayIcon;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB