diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2023-02-01 10:36:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-01 10:36:08 +0100 |
commit | 13452658006ba945cec1491cb198f05b2258af93 (patch) | |
tree | ddda77e97bf445ee785f5aa129cbb0a5757fd834 | |
parent | 7d34b5456f9978d063b9098ab095256109d522c2 (diff) | |
download | NotEnoughUpdates-13452658006ba945cec1491cb198f05b2258af93.tar.gz NotEnoughUpdates-13452658006ba945cec1491cb198f05b2258af93.tar.bz2 NotEnoughUpdates-13452658006ba945cec1491cb198f05b2258af93.zip |
Reactivate neu search bar. (#570)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java index cb0f3fc0..7159ef89 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java @@ -1046,7 +1046,7 @@ public class NEUOverlay extends Gui { } } - if (!Keyboard.getEventKeyState()) { + if (Keyboard.getEventKeyState()) { if (!NotEnoughUpdates.INSTANCE.config.toolbar.searchBar) { searchBarHasFocus = false; } |