fix: set initial keybind index button value to config value
This commit is contained in:
parent
42bad1822b
commit
24cb7d665d
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ public class EditProfileScreen extends Screen {
|
||||||
linearLayoutSettings.addChild(
|
linearLayoutSettings.addChild(
|
||||||
CycleButton.<Integer>builder(value -> Component.literal(value.toString()))
|
CycleButton.<Integer>builder(value -> Component.literal(value.toString()))
|
||||||
.withValues(0, 1, 2, 3)
|
.withValues(0, 1, 2, 3)
|
||||||
.withInitialValue(0)
|
.withInitialValue(this.profileConfiguration.getKeybindIndex())
|
||||||
.create(0, 0, 150, 20, Component.translatable("gui.optionsprofiles.keybind-index"), (button, keybindIndex) -> {
|
.create(0, 0, 150, 20, Component.translatable("gui.optionsprofiles.keybind-index"), (button, keybindIndex) -> {
|
||||||
this.profileConfiguration.setKeybindIndex(keybindIndex);
|
this.profileConfiguration.setKeybindIndex(keybindIndex);
|
||||||
}),
|
}),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue