Skip to content

Commit

Permalink
Replace DynamicGridLayout use in the quest list
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada committed Sep 20, 2023
1 parent aca298a commit 01aebfc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/com/questhelper/panel/QuestHelperPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
import net.runelite.api.Item;
import net.runelite.api.QuestState;
import net.runelite.client.ui.ColorScheme;
import net.runelite.client.ui.DynamicGridLayout;
import net.runelite.client.ui.PluginPanel;
import net.runelite.client.ui.components.IconTextField;
import net.runelite.client.util.ImageUtil;
Expand Down Expand Up @@ -280,7 +279,7 @@ public void changedUpdate(DocumentEvent e)
searchQuestsPanel.add(allQuestsCompletedPanel, BorderLayout.SOUTH);

questListPanel.setBorder(new EmptyBorder(8, 10, 0, 10));
questListPanel.setLayout(new DynamicGridLayout(0, 1, 0, 5));
questListPanel.setLayout(new DynamicPaddedGridLayout(0, 1, 0, 5));
questListPanel.setAlignmentX(Component.LEFT_ALIGNMENT);
showMatchingQuests("");

Expand Down

0 comments on commit 01aebfc

Please sign in to comment.