Added comment in config for close-on-click-outside

This commit is contained in:
Florian CUNY 2020-05-13 17:46:32 +02:00
parent 805b376de3
commit 321637b9b9
1 changed files with 3 additions and 0 deletions

View File

@ -114,6 +114,9 @@ public class Settings implements ConfigObject {
@ConfigEntry(path = "general.fakeplayers", experimental = true)
private Set<String> fakePlayers = new HashSet<>();
/* PANELS */
@ConfigComment("Toggle whether panels should be closed or not when the player clicks anywhere outside of the inventory view.")
@ConfigEntry(path = "panel.close-on-click-outside")
private boolean closePanelOnClickOutside = true;