Skip to content

Commit

Permalink
Fix handling mouse input in config guis
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed Dec 3, 2018
1 parent a885035 commit a83ed89
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -74,7 +74,7 @@ public void rebuildItemFilter() {
}

public boolean isListDisplayed() {
return Config.isOverlayEnabled() && this.hasRoom;
return Config.isOverlayEnabled() && this.guiProperties != null && this.hasRoom;
}

private static Rectangle getDisplayArea(IGuiProperties guiProperties) {
Expand Down

0 comments on commit a83ed89

Please sign in to comment.