diff options
| author | shedaniel <daniel@shedaniel.me> | 2021-12-12 22:32:41 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2021-12-12 23:22:10 +0800 |
| commit | f003e4b404a0bb4c042dd94a071fa34c7362bd48 (patch) | |
| tree | e58c4c9e2b82a0ff2567fea51457b1aad55023f4 /runtime/src/main/java/me/shedaniel/rei | |
| parent | ea48061cccb7fe91cf54478829d45798d39e2633 (diff) | |
| download | RoughlyEnoughItems-f003e4b404a0bb4c042dd94a071fa34c7362bd48.tar.gz RoughlyEnoughItems-f003e4b404a0bb4c042dd94a071fa34c7362bd48.tar.bz2 RoughlyEnoughItems-f003e4b404a0bb4c042dd94a071fa34c7362bd48.zip | |
Change Copy Recipe ID and Export Image Keybind
Diffstat (limited to 'runtime/src/main/java/me/shedaniel/rei')
| -rw-r--r-- | runtime/src/main/java/me/shedaniel/rei/impl/client/config/ConfigObjectImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/src/main/java/me/shedaniel/rei/impl/client/config/ConfigObjectImpl.java b/runtime/src/main/java/me/shedaniel/rei/impl/client/config/ConfigObjectImpl.java index 8a253265f..d03b482b7 100644 --- a/runtime/src/main/java/me/shedaniel/rei/impl/client/config/ConfigObjectImpl.java +++ b/runtime/src/main/java/me/shedaniel/rei/impl/client/config/ConfigObjectImpl.java @@ -469,9 +469,9 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData { private ModifierKeyCode previousPageKeybind = ModifierKeyCode.unknown(); private ModifierKeyCode nextPageKeybind = ModifierKeyCode.unknown(); private ModifierKeyCode focusSearchFieldKeybind = ModifierKeyCode.unknown(); - private ModifierKeyCode copyRecipeIdentifierKeybind = ModifierKeyCode.unknown(); + private ModifierKeyCode copyRecipeIdentifierKeybind = ModifierKeyCode.of(InputConstants.Type.MOUSE.getOrCreate(InputConstants.MOUSE_BUTTON_MIDDLE), Modifier.none()); private ModifierKeyCode favoriteKeybind = ModifierKeyCode.of(InputConstants.Type.KEYSYM.getOrCreate(InputConstants.KEY_A), Modifier.none()); - private ModifierKeyCode exportImageKeybind = ModifierKeyCode.unknown(); + private ModifierKeyCode exportImageKeybind = ModifierKeyCode.of(InputConstants.Type.KEYSYM.getOrCreate(InputConstants.KEY_F8), Modifier.none()); private ModifierKeyCode previousScreenKeybind = ModifierKeyCode.of(InputConstants.Type.KEYSYM.getOrCreate(InputConstants.KEY_BACKSPACE), Modifier.none()); } |
