Skip to content

Commit

Permalink
Update Property.java
Browse files Browse the repository at this point in the history
  • Loading branch information
fcomte authored Jan 28, 2023
1 parent 1b2c569 commit 6d6272c
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ public static class XOnyxia {
boolean hidden = false;
boolean readonly = false;
String overwriteDefaultWith;
String overwriteSliderWith;
String useRegionSliderConfig;

public boolean isHidden() {
return hidden;
Expand All @@ -384,12 +384,12 @@ public void setOverwriteDefaultWith(String overwriteDefaultWith) {
this.overwriteDefaultWith = overwriteDefaultWith;
}

public String getOverwriteSliderWith() {
return overwriteSliderWith;
public String getUseRegionSliderConfig() {
return useRegionSliderConfig;
}

public void setOverwriteSliderWith(String overwriteSliderWith) {
this.overwriteSliderWith = overwriteSliderWith;
public void setUseRegionSliderConfig(String useRegionSliderConfig) {
this.useRegionSliderConfig = useRegionSliderConfig;
}
}

Expand Down

0 comments on commit 6d6272c

Please sign in to comment.