Skip to content

Commit

Permalink
Change pants visibility option to show by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Sollace committed Sep 21, 2024
1 parent 63275ba commit a7a1ae4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/main/java/com/minelittlepony/hdskins/client/HDConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ public class HDConfig extends Config {
.addComment("When enable, will always use the native dialogue for opening and saving files");
public final Setting<Boolean> enableSandboxingCheck = value("filesystem", "enableSandboxingCheck", true)
.addComment("When enabled, will use the native dialogue for opening and saving files only when running inside a sandboxed environment (flatpaks)");
public final Setting<VisibilityMode> pantsButtonVisibility = value("gui", "pantsButtonVisibility", VisibilityMode.AUTO)
public final Setting<VisibilityMode> pantsButtonVisibility = value("gui", "mainMenuButton", VisibilityMode.ON)
.addComment("Whether to show the hd skins uploader button on the main menu")
.addComment("AUTO (default) - only show when Mod Menu is not installed")
.addComment("ON - always show")
.addComment("AUTO - only show when Mod Menu is not installed")
.addComment("ON (default) - always show")
.addComment("OFF - never show");


public final Setting<Boolean> useBatchLoading = value("experiments", "useBatchLoading", false)
.addComment("When enabled, player skins will be requested from the server in batches (experimental)");

Expand Down

0 comments on commit a7a1ae4

Please sign in to comment.