Skip to content

Commit

Permalink
fix tabs maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam- committed Jun 26, 2024
1 parent 1f59cd8 commit 68ffe41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ else if (tagSearch)
case "bankBuildTab":
// Use the per-tab view when we want to hide the separators to avoid having to reposition items &
// recomputing the scroll height.
if (tabInterface.isTagTabActive() || config.removeSeparators() || (activeTag != null && activeTag.layout() != null))
if (activeTag != null && (tabInterface.isTagTabActive() || config.removeSeparators() || activeTag.layout() != null))
{
var stack = client.getIntStack();
var sz = client.getIntStackSize();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ public class TabInterface
private final ChatMessageManager chatMessageManager;

private boolean enabled;
@Getter
private TagTab activeTab;
@Getter
private boolean tagTabActive;
Expand Down

0 comments on commit 68ffe41

Please sign in to comment.