Skip to content

Commit 1a1a9a2

Browse files
committed
Double Trouble
- Fix StockKeeperRequestScreen focusing search box if the chat key is pressed when typing in the address box
1 parent afa8c96 commit 1a1a9a2

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

changelog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
------------------------------------------------------
2+
Create 6.0.8
3+
------------------------------------------------------
4+
5+
#### Bug Fixes
6+
7+
- Fix StockKeeperRequestScreen focusing search box if the chat key is pressed when typing in the address box
8+
- Fix signals not reacting to redstone input #9444
9+
- Fix held-item based menus not working correctly #9433
10+
- Fix z-fighting between elevators and walls
11+
- Fix crash with certain mods that add spawn eggs
12+
- Fix copycat blocks and other blocks depending on ModelData not being rendered correctly on contraptions when using indirect or instanced rendering #9410 (1.21.1)
13+
- Fix threshold switches not correctly counting empty slots #9420 (1.21.1)
14+
115
------------------------------------------------------
216
Create 6.0.7
317
------------------------------------------------------

src/main/java/com/simibubi/create/content/logistics/stockTicker/StockKeeperRequestScreen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1330,7 +1330,7 @@ public boolean charTyped(char pCodePoint, int pModifiers) {
13301330
@Override
13311331
public boolean keyPressed(int pKeyCode, int pScanCode, int pModifiers) {
13321332
ignoreTextInput = false;
1333-
if (!searchBox.isFocused() && minecraft.options.keyChat.matches(pKeyCode, pScanCode)) {
1333+
if (!addressBox.isFocused() && !searchBox.isFocused() && minecraft.options.keyChat.matches(pKeyCode, pScanCode)) {
13341334
ignoreTextInput = true;
13351335
searchBox.setFocused(true);
13361336
return true;

0 commit comments

Comments
 (0)