Skip to content

Commit

Permalink
fix upstream release mash
Browse files Browse the repository at this point in the history
RL didn't formally post the release of 1.10.32.1 so it caused some issues
  • Loading branch information
zeruth committed Jun 18, 2024
1 parent dcda570 commit af0fb8e
Show file tree
Hide file tree
Showing 7 changed files with 145 additions and 88 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.util.Arrays;
import javax.swing.JFrame;
import lombok.AccessLevel;
import lombok.Setter;
Expand All @@ -38,7 +39,7 @@ public class DevToolsFrame extends JFrame

public DevToolsFrame()
{
setIconImage(ClientUI.ICON);
setIconImages(Arrays.asList(ClientUI.ICON_128, ClientUI.ICON_16));

setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
addWindowListener(new WindowAdapter()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class InventoryInspector extends DevToolsFrame

setLayout(new BorderLayout());
setTitle("RuneLite Inventory Inspector");
setIconImage(ClientUI.ICON);
setIconImages(Arrays.asList(ClientUI.ICON_128, ClientUI.ICON_16));

tree.setBorder(new EmptyBorder(2, 2, 2, 2));
tree.setRootVisible(false);
Expand Down
Loading

0 comments on commit af0fb8e

Please sign in to comment.