diff options
| author | Lulonaut <67191924+Lulonaut@users.noreply.github.com> | 2022-05-15 11:55:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-15 11:55:11 +0200 |
| commit | 9f372b3f8b5f07b3dbc6c010e064924d5b4820a4 (patch) | |
| tree | 54ed21aae68b0076e2f824a495a510bc4fb7f091 /src/main/java/io/github/moulberry/notenoughupdates/auction/CustomAH.java | |
| parent | e2bbc83d80305e7b20292cb6a0fbcfad0fda4eed (diff) | |
| download | notenoughupdates-9f372b3f8b5f07b3dbc6c010e064924d5b4820a4.tar.gz notenoughupdates-9f372b3f8b5f07b3dbc6c010e064924d5b4820a4.tar.bz2 notenoughupdates-9f372b3f8b5f07b3dbc6c010e064924d5b4820a4.zip | |
More Keyboard fixes (#130)
* Allow holding down keys in StorageOverlay and Item list searchbar
* don't sleep on the render thread
* Remove most calls to Keyboard#enableRepeatEvents
Also remove my flawless implementation in the render methods since it's not needed anymore
* remove autoclicker
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/auction/CustomAH.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/auction/CustomAH.java | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/auction/CustomAH.java b/src/main/java/io/github/moulberry/notenoughupdates/auction/CustomAH.java index 123da60a..4fae9ea5 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/auction/CustomAH.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/auction/CustomAH.java @@ -35,14 +35,23 @@ import org.lwjgl.opengl.GL14; import java.awt.*; import java.awt.datatransfer.StringSelection; import java.text.NumberFormat; +import java.util.ArrayList; +import java.util.ConcurrentModificationException; +import java.util.HashMap; +import java.util.HashSet; import java.util.List; -import java.util.*; +import java.util.Locale; +import java.util.Map; +import java.util.Set; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.regex.Matcher; import java.util.regex.Pattern; -import static io.github.moulberry.notenoughupdates.util.GuiTextures.*; +import static io.github.moulberry.notenoughupdates.util.GuiTextures.auction_accept; +import static io.github.moulberry.notenoughupdates.util.GuiTextures.auction_price; +import static io.github.moulberry.notenoughupdates.util.GuiTextures.auction_view; +import static io.github.moulberry.notenoughupdates.util.GuiTextures.auction_view_buttons; public class CustomAH extends Gui { private enum PriceFilter { @@ -1589,7 +1598,6 @@ public class CustomAH extends Gui { return false; } - Keyboard.enableRepeatEvents(true); if (isEditingPrice() && Keyboard.getEventKey() == Keyboard.KEY_RETURN) { Minecraft.getMinecraft().displayGuiScreen(null); } else if (Keyboard.getEventKey() == Keyboard.KEY_ESCAPE) { |
