Skip to content

Commit

Permalink
removes legacy profiles from the settings
Browse files Browse the repository at this point in the history
moves the settings file to the modloaders config folder
  • Loading branch information
fayer3 committed Jun 21, 2024
1 parent 649f257 commit 3a6c3d8
Show file tree
Hide file tree
Showing 6 changed files with 380 additions and 885 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ protected void applyValue() {
double fullValue = this.enumOptions.denormalizeValue((float) this.value);
dataholder.vrSettings.setOptionFloatValue(this.enumOptions, (float) fullValue);
// with that keyboard changes don't work, if there are fewer options than pixels
InputType inputType = Minecraft.getInstance().getLastInputType();
if (inputType == InputType.MOUSE) {
if (Minecraft.getInstance().getLastInputType() == InputType.MOUSE) {
this.value = this.enumOptions.normalizeValue((float) fullValue);
}
}
Expand Down
Loading

0 comments on commit 3a6c3d8

Please sign in to comment.